RosettaCodeData/Task/Loops-Break/MAXScript/loops-break.max

9 lines
116 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
while true do
(
a = random 0 19
format ("A: % \n") a
if a == 10 do exit
b = random 0 19
format ("B: % \n") b
)