Exemplo n.º 1
0
 public static void Not(Forth f)
 {
     bool b = f.PopBool();
     f.PushBool(!b);
 }
Exemplo n.º 2
0
 public static void JumpIfFalse(Forth f)
 {
     int target = (int)f.PopInt64();
     bool flag = f.PopBool();
     if (!flag) f.rStack.Top = target;
 }