Integer comparison: Difference between revisions

Line 479:
 
=={{header|ColdFusion}}==
 
In CFML:
* '''Less than:''' LT
* '''Less than or equal to:''' LTE
* '''Greater than:''' GT
* '''Greater than or equal to:''' GTE
* '''Equal to:''' EQ
* '''Not equal to:''' NEQ
 
===In CFML:===
 
<lang cfm><cffunction name="CompareInteger">
<cfargument name="Integer1" type="numeric">
Line 505 ⟶ 514:
</cffunction></lang>
 
===In CFScript:===
 
<lang cfm><cfscript>
function CompareInteger( Integer1, Integer2 ) {