RosettaCodeData/Task/Conditional-structures/MAXScript/conditional-structures-1.max
2023-07-01 13:44:08 -04: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"
)