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

17 lines
190 B
Plaintext

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