Files
Noja/tests/compiler/func/Testcase_011_003.noja-test
T

22 lines
239 B
Plaintext

@type [compiler]
@source
fun nop(a) {
return a;
}
@bytecode
PUSHFUN fun, 1, "nop";
JUMP end;
fun:
ASS "a";
POP 1;
PUSHVAR "a";
RETURN 1;
RETURN 0;
end:
ASS "nop";
POP 1;
EXIT;