RosettaCodeData/Task/Loops-Do-while/Liberty-BASIC/loops-do-while.liberty

6 lines
55 B
Plaintext

a = 0
do
a =a +1
print a
loop until ( a mod 6) = 0