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

9 lines
133 B
Text

while (1)
a = random(20) - 1;
player:tell(a);
if (a == 10)
break;
endif
b = random(20) - 1;
player:tell(b);
endwhile