fixed tests that were failing because of the last modifications

This commit is contained in:
Francesco Cozzuto
2023-01-13 10:40:18 +01:00
parent 920b88c006
commit 2c7e0ae2ba
15 changed files with 29 additions and 29 deletions
+2 -2
View File
@@ -6,12 +6,12 @@
#bytecode
PUSHFUN fun, 0;
ASS "X";
POP 1;
JUMP end;
fun:
PUSHSTR "Hello, world!";
POP 1;
RETURN 0;
end:
ASS "X";
POP 1;
EXIT;