Files
Noja/tests/compiler/func/Testcase_011_001.noja-test

18 lines
208 B
Plaintext

@type [compiler]
@source
fun X() "Hello, world!";
@bytecode
PUSHFUN fun, 0, "X";
JUMP end;
fun:
PUSHSTR "Hello, world!";
POP 1;
RETURN 0;
end:
ASS "X";
POP 1;
EXIT;