RosettaCodeData/Task/Conditional-structures/MAXScript/conditional-structures-1.max

13 lines
116 B
Plaintext

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