RosettaCodeData/Task/Integer-comparison/Lingo/integer-comparison.lingo
2023-07-01 13:44:08 -04: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