RosettaCodeData/Task/Flow-control-structures/Ring/flow-control-structures.ring
2016-12-05 23:44:36 +01:00

6 lines
91 B
Text

i = 1
while true
see i + nl
if i = 10 see "Break!" exit ok
i = i + 1
end