removr unused code

This commit is contained in:
Daniella / Tove 2022-05-17 20:02:18 +02:00
parent 3296f90ca1
commit 5f4fe1a1c4
2 changed files with 3 additions and 2 deletions

View file

@ -256,7 +256,7 @@ public class ISBPL {
return (idx, words, file, stack) -> {
idx++;
int i = 1;
for(; !words[idx].equals(";") && !words[idx].isEmpty(); idx++, i++);
for(; !words[idx].equals(";"); idx++, i++);
for(idx--; !words[idx].equals("with"); idx--) {
frameStack.get().peek().define(words[idx], stack.pop());
}

View file

@ -1,4 +1,5 @@
func main {
with args
"Hello World!\n" puts
0
}
}