Integer comparison: Difference between revisions

add fermat
(Added solution for Action!)
(add fermat)
Line 1,466:
}
</lang>
 
=={{header|Fermat}}==
<lang fermat>Func Compare =
?a;
?b;
if a=b then !'Equal' fi;
if a<b then !'Less than' fi;
if a>b then !'Greater than' fi;
.;</lang>
 
=={{header|Fish}}==
781

edits