RosettaCodeData/Task/Flow-control-structures/Ring/flow-control-structures.ring
2023-07-01 13:44:08 -04:00

6 lines
91 B
Text

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