RosettaCodeData/Task/Conditional-structures/MAXScript/conditional-structures-1.maxscript
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

12 lines
116 B
Text

if x == 1 then
(
print "one"
)
else if x == 2 then
(
print "two"
)
else
(
print "Neither one or two"
)