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

17 lines
145 B
Plaintext

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