RosettaCodeData/Task/Loops-Break/Lingo/loops-break.lingo

7 lines
104 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
repeat while TRUE
n = random(20)-1
put n
if n = 10 then exit repeat
put random(20)-1
end repeat