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

17 lines
143 B
Plaintext

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