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

15 lines
147 B
Plaintext

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