Files
Noja/tests/suite/Testcase_011_002
T

22 lines
251 B
Plaintext

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