RosettaCodeData/Task/Conditional-structures/MiniScript/conditional-structures-1.mini

11 lines
156 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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