The not equal operator (!=) determines if the values of the left and right operands are not equal, and if they are not equal, it returns TRUE.
Expression != Expression
> PRINT 1 != 2
TRUE
> PRINT 1 != 1.0
FALSE
> PRINT TRUE != FALSE
TRUE
> PRINT "HELLO" != "hello"
TRUE