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

11 lines
156 B
Plaintext

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