Files
Noja/tests/compiler/expr/arithmetic/Testcase_002_024.noja-test
T

17 lines
143 B
Plaintext

@type [compiler]
@source
1 * 2 + 3;
@bytecode
PUSHINT 1;
PUSHINT 2;
MUL;
PUSHINT 3;
ADD;
POP 1;
EXIT;