RosettaCodeData/Task/Integer-comparison/Clipper/integer-comparison.clipper

10 lines
160 B
Text
Raw Permalink Normal View History

2014-01-17 05:32:22 +00:00
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