17 lines
143 B
Plaintext
17 lines
143 B
Plaintext
|
|
@type [compiler]
|
|
@source
|
|
|
|
1 * 2 + 3;
|
|
|
|
@bytecode
|
|
|
|
PUSHINT 1;
|
|
PUSHINT 2;
|
|
MUL;
|
|
PUSHINT 3;
|
|
ADD;
|
|
|
|
POP 1;
|
|
|
|
EXIT; |