Browse Source

Add missing break in execution switch

The & command was mssing a break at its end.
ApisNecros 1 year ago
parent
commit
253c48a5f5
1 changed files with 1 additions and 0 deletions
  1. 1 0
      starfish.js

+ 1 - 0
starfish.js

@@ -312,6 +312,7 @@ class CodeBox {
                         this.stacks[this.curr_stack].Push(this.stacks[this.curr_stack].register);
                         this.stacks[this.curr_stack].register = null;
                     }
+                    break;
                 }
                 case ":":
                     this.stacks[this.curr_stack].Duplicate();