RosettaCodeData/Task/Loops-Break/Euphoria/loops-break.euphoria
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

9 lines
156 B
Text

integer i
while 1 do
i = rand(20) - 1
printf(1, "%g ", {i})
if i = 10 then
exit
end if
printf(1, "%g ", {rand(20)-1})
end while