interpreter/script

18 lines
152 B
Plaintext
Raw Normal View History

2018-02-07 09:26:36 -05:00
func inc
set arg0 (arg0 + 1)
ret arg0
end
2018-02-06 08:48:21 -05:00
set a 0
do
2018-02-07 09:26:36 -05:00
inc a > a
if ((a % 9) == 0)
put a
end
while (a < 100)
if (a == 100)
put "All good!"
end