!=
- testing for difference
A
!=
B
!= tests to see if
A
and
B
are not equal,
if that's the case
true
is returned else
false
is returned.
if
(
not
A
==
B )
That's the same as
if
( A != B )
See also
if
|
while
|
==
|
~=
|
<
|
>
|
<=
|
>=