|
@@ -235,6 +235,12 @@ class CodeBox {
|
|
this.stack.push(y > x ? 1 : 0);
|
|
this.stack.push(y > x ? 1 : 0);
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
|
|
+ case "=": {
|
|
|
|
+ const x = this.stack.Pop();
|
|
|
|
+ const y = this.stack.Pop();
|
|
|
|
+ this.stack.push(y == x ? 1 : 0);
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
// Movement
|
|
// Movement
|
|
case "^":
|
|
case "^":
|
|
this.MoveUp();
|
|
this.MoveUp();
|