Files
Noja/tests/suite/Testcase_011_002
T
2022-08-12 05:30:41 +02:00

22 lines
255 B
Plaintext

#source
fun X() {
"Hello, world!";
return false;
}
#bytecode
PUSHFUN fun, 0;
ASS "X";
POP 1;
JUMP end;
fun:
PUSHSTR "Hello, world!";
POP 1;
PUSHFLS;
RETURN 1;
RETURN 0;
end:
RETURN 0;