You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
152 B
Plaintext

func inc
set arg0 (arg0 + 1)
ret arg0
end
set a 0
do
inc a > a
if ((a % 9) == 0)
put a
end
while (a < 100)
if (a == 100)
put "All good!"
end