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

7 lines
136 B
Text

Func Compare =
?a;
?b;
if a=b then !'Equal' fi;
if a<b then !'Less than' fi;
if a>b then !'Greater than' fi;
.;