RosettaCodeData/Task/Loops-Do-while/MAXScript/loops-do-while.max

8 lines
55 B
Plaintext

a = 0
do
(
print a
a += 1
)
while mod a 6 != 0