tags:

views:

226

answers:

3

I've never seen this operator yet.

+4  A: 

This is the not equal to operator.

In Java and C++ you may have seen it as !=

Hope that helps!

Graham
+2  A: 

It means not equal to. In other languages it is often written as != or <>.

Justin Peel
+2  A: 

For the documentation see Relational Operators.

yuk