RosettaCodeData/Task/Conditional-structures/MiniScript/conditional-structures-1.mini
2023-07-01 13:44:08 -04:00

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