RosettaCodeData/Task/Integer-comparison/Clipper/integer-comparison.clipper
2014-01-17 05:34:36 +00: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