12 lines
108 B
Plaintext
12 lines
108 B
Plaintext
|
|
#source
|
|
|
|
1 + 7.0;
|
|
|
|
#bytecode
|
|
|
|
PUSHINT 1;
|
|
PUSHFLT 7.0;
|
|
ADD;
|
|
POP 1;
|
|
RETURN 0; |