RosettaCodeData/Task/Loops-While/MAXScript/loops-while.max

7 lines
51 B
Plaintext

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