====== isneq ======
===== Description =====
Thest the //in//equality of two variables.
===== Function prototype =====
bool isneq
===== Arguments =====
^ Name ^ Type ^ Comment ^
| //arg1// | variant | The first variable to be compared. |
| //arg2// | variant | The second variable to be compared. |
If the type of //arg1// is not equal to that of //arg2//, the ordering of the arguments may change the result of calls to ''isneq''. See comments for [[plugins:general:zeoscript:reference:functions:iseq]].
===== Return value =====
False if the values are equal, and true otherwise.
===== Example =====
echo // should be true
echo // should be false
... the output of which is written to the event log by [[plugins:general:zeoscript:reference:functions:echo]] as:
true
false
===== Comments =====
None.
===== See also =====
* [[plugins:general:zeoscript:reference:functions:iseq]]
* [[plugins:general:zeoscript:reference:functions:isgt]]
* [[plugins:general:zeoscript:reference:functions:islt]]