Explorar el Código

Add equality check operator

ApisNecros hace 1 año
padre
commit
892907d53e
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  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();