12 lines
116 B
Text
12 lines
116 B
Text
if x == 1 then
|
|
(
|
|
print "one"
|
|
)
|
|
else if x == 2 then
|
|
(
|
|
print "two"
|
|
)
|
|
else
|
|
(
|
|
print "Neither one or two"
|
|
)
|