RosettaCodeData/Task/Loops-Break/Liberty-BASIC/loops-break-1.basic

7 lines
101 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
while num<>10
num=rnd(1)*20
print num
if num=10 then exit while
print rnd(1)*20
wend