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

8 lines
55 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
a = 0
do
(
print a
a += 1
)
while mod a 6 != 0