RosettaCodeData/Task/Integer-comparison/Fermat/integer-comparison.fermat

8 lines
136 B
Plaintext

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