RosettaCodeData/Task/Loops-While/MAXScript/loops-while.max
2023-07-01 13:44:08 -04:00

6 lines
51 B
Text

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