소스 검색

Fix gt and lt operators

Forgot to capitalize the function name for Push.
ApisNecros 1 년 전
부모
커밋
e6775fbe69
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      starfish.js

+ 2 - 2
starfish.js

@@ -227,13 +227,13 @@ class CodeBox {
                 case "(": {
                     const x = this.stack.Pop();
                     const y = this.stack.Pop();
-                    this.stack.push(y < x ? 1 : 0);
+                    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);
+                    this.stack.Push(y > x ? 1 : 0);
                     break;
                 }
                 case "=": {