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

24 lines
248 B
Plaintext

@type [compiler]
@source
A - B - C;
A - B * C;
@bytecode
PUSHVAR "A";
PUSHVAR "B";
SUB;
PUSHVAR "C";
SUB;
POP 1;
PUSHVAR "A";
PUSHVAR "B";
PUSHVAR "C";
MUL;
SUB;
POP 1;
EXIT;