RosettaCodeData/Task/Integer-comparison/Lingo/integer-comparison.lingo
2016-12-05 23:44:36 +01:00

5 lines
147 B
Text

on compare (a, b)
if a < b then put a&" is less than "&b
if a = b then put a&" is equal to "&b
if a > b then put a&" is greater than "&b
end