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

7 lines
51 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a = 1024
while a > 0 do
(
print a
a /= 2
)