Przeglądaj źródła

Add greater and less than operators

ApisNecros 1 rok temu
rodzic
commit
4f1773bd91
1 zmienionych plików z 12 dodań i 0 usunięć
  1. 12 0
      starfish.js

+ 12 - 0
starfish.js

@@ -223,6 +223,18 @@ class CodeBox {
                 this.stack.Push(y % x);
                 break;
             }
+            case "(": {
+                const x = this.stack.Pop();
+                const y = this.stack.Pop();
+                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();