removr unused code
This commit is contained in:
parent
3296f90ca1
commit
5f4fe1a1c4
2 changed files with 3 additions and 2 deletions
|
@ -256,7 +256,7 @@ public class ISBPL {
|
||||||
return (idx, words, file, stack) -> {
|
return (idx, words, file, stack) -> {
|
||||||
idx++;
|
idx++;
|
||||||
int i = 1;
|
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--) {
|
for(idx--; !words[idx].equals("with"); idx--) {
|
||||||
frameStack.get().peek().define(words[idx], stack.pop());
|
frameStack.get().peek().define(words[idx], stack.pop());
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
func main {
|
func main {
|
||||||
|
with args
|
||||||
"Hello World!\n" puts
|
"Hello World!\n" puts
|
||||||
0
|
0
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue