29 lines
348 B
Plaintext
29 lines
348 B
Plaintext
main:
|
|
declare result
|
|
|
|
emit "0 + 1: "
|
|
calc result intinc "0"
|
|
emit result
|
|
emit eol
|
|
|
|
emit "5 + 1: "
|
|
calc result intinc "5"
|
|
emit result
|
|
emit eol
|
|
|
|
emit "9 + 1: "
|
|
calc result intinc "9"
|
|
emit result
|
|
emit eol
|
|
|
|
emit "15 + 1: "
|
|
calc result intinc "15"
|
|
emit result
|
|
emit eol
|
|
|
|
emit "99 + 1: "
|
|
calc result intinc "99"
|
|
emit result
|
|
emit eol
|
|
/
|