RosettaCodeData/Task/Loops-While/MAXScript/loops-while.maxscript
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

6 lines
51 B
Text

a = 1024
while a > 0 do
(
print a
a /= 2
)