RosettaCodeData/Task/Flow-control-structures/Ring/flow-control-structures.ring

7 lines
91 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
i = 1
while true
see i + nl
if i = 10 see "Break!" exit ok
i = i + 1
end