RosettaCodeData/Task/Loops-While/MAXScript/loops-while.max
2013-04-11 11:14:19 -07:00

6 lines
51 B
Text

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