浏览代码

Add equality check operator

ApisNecros 1 年之前
父节点
当前提交
892907d53e
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      starfish.js

+ 6 - 0
starfish.js

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