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