15 lines
147 B
Plaintext
15 lines
147 B
Plaintext
|
|
@type [compiler]
|
|
@source
|
|
|
|
1 + (2 * 3);
|
|
|
|
@bytecode
|
|
|
|
PUSHINT 1;
|
|
PUSHINT 2;
|
|
PUSHINT 3;
|
|
MUL;
|
|
ADD;
|
|
POP 1;
|
|
EXIT; |