RosettaCodeData/Task/Integer-comparison/Clipper/integer-comparison.clipper
2023-07-01 13:44:08 -04:00

9 lines
160 B
Text

Function Compare(a, b)
IF a < b
? "A is less than B"
ELSEIF a > b
? "A is more than B"
ELSE
? "A equals B"
ENDIF
Return Nil