16 lines
154 B
Plaintext
16 lines
154 B
Plaintext
|
|
@type [compiler]
|
|
@source
|
|
|
|
fun X() {}
|
|
|
|
@bytecode
|
|
|
|
PUSHFUN fun, 0, "X";
|
|
JUMP end;
|
|
fun:
|
|
RETURN 0;
|
|
end:
|
|
ASS "X";
|
|
POP 1;
|
|
EXIT; |