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

17 lines
173 B
Plaintext

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