Explorar el Código

Parse numeric instruction as strings

All intructions parse from the input box are strings, so they need to be
parsed as such in the switch case.
ApisNecros hace 1 año
padre
commit
a26d677b3b
Se han modificado 1 ficheros con 10 adiciones y 10 borrados
  1. 10 10
      starfish.js

+ 10 - 10
starfish.js

@@ -147,16 +147,16 @@ class CodeBox {
     Execute(instruction) {
         let output = null;
         switch(instruction) {
-            case 1:
-            case 2:
-            case 3:
-            case 4:
-            case 5:
-            case 6:
-            case 7:
-            case 8:
-            case 9:
-            case 0:
+            case "1":
+            case "2":
+            case "3":
+            case "4":
+            case "5":
+            case "6":
+            case "7":
+            case "8":
+            case "9":
+            case "0":
             case "a":
             case "b":
             case "c":