RosettaCodeData/Task/Integer-comparison/Lingo/integer-comparison.lingo

6 lines
147 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
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