10 lines
156 B
Text
10 lines
156 B
Text
x = 42
|
|
if x < 10 then
|
|
print "small"
|
|
else if x < 20 then
|
|
print "small-ish"
|
|
else if x > 100 then
|
|
print "large"
|
|
else
|
|
print "just right"
|
|
end if
|