!=
| Syntax |
expression1 notEquals expression2 expression1 != expression2
|
| Action |
Determine if expression1 is not equal to expression2.
|
| Returns |
True if they are not equal, false otherwise.
|
| Examples |
6 notEquals 7 » true
6 != 7
6 != 6
local (x = 6, y = 6); x != y
local (x = 6); x notEquals 7
|
| Notes |
There is no difference between the two forms notEquals and !=. To set the value of an object, use the = sign.
|
| See Also |
equals
|