Integer comparison: Difference between revisions

Content added Content deleted
Line 1,601: Line 1,601:


=={{header|Fermat}}==
=={{header|Fermat}}==
<lang fermat>Func Compare =
<syntaxhighlight lang=fermat>Func Compare =
?a;
?a;
?b;
?b;
Line 1,607: Line 1,607:
if a<b then !'Less than' fi;
if a<b then !'Less than' fi;
if a>b then !'Greater than' fi;
if a>b then !'Greater than' fi;
.;</lang>
.;</syntaxhighlight>


=={{header|Fish}}==
=={{header|Fish}}==