Files
Noja/tests/runtime/jumpifnotandpop/jumpifnotandpop_2.noja-test
T

17 lines
183 B
Plaintext

@type [runtime]
@bytecode
PUSHFLS;
JUMPIFNOTANDPOP ye;
PUSHINT 100;
JUMP end;
ye:
PUSHINT 300;
end:
PUSHVAR "print";
CALL 1, 1;
POP 1;
EXIT;
@output [300]