RosettaCodeData/Task/Loops-While/MOO/loops-while.moo

6 lines
61 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
i = 1024;
while (i > 0)
player:tell(i);
i /= 2;
endwhile