Thest the inequality of two variables.
bool isneq <bool:arg1> <bool:arg2>
Name | Type | Comment |
---|---|---|
arg1 | variant | The first variable to be compared. |
arg2 | variant | The second variable to be compared. |
isneq
. See comments for iseq.
False if the values are equal, and true otherwise.
echo <zs:isneq 1 2> // should be true echo <zs:isneq 2 2> // should be false
… the output of which is written to the event log by echo as:
true false
None.