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

8 lines
137 B
Text

Func Compare a,b
if a < b
See "A is less than B"
but a > b
See "A is more than B"
else
See "A equals B"
ok