コード例 #1
0
ファイル: CatPrimitives.cs プロジェクト: catb0t/cat-language
 public override void Eval(Executor exec) { exec.Swap(); exec.PushInt(exec.PopInt() >> exec.PopInt()); }
コード例 #2
0
ファイル: CatPrimitives.cs プロジェクト: catb0t/cat-language
 public override void Eval(Executor exec) { exec.Swap();  exec.PushBool(exec.PopInt() <= exec.PopInt()); }
コード例 #3
0
ファイル: CatPrimitives.cs プロジェクト: catb0t/cat-language
 public override void Eval(Executor exec)
 {
     exec.Swap();
 }