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

8 lines
55 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a = 0
do
(
print a
a += 1
)
while mod a 6 != 0