Syntax
if intVarOne intVarTwo then beep
Synonyms
is not
isn't
is not equal [to]
isn't equal [to]
doesn't equal
Return value
boolean; true or
false
Description
These operators are the opposite of the equals
operator and its variations. They return true if
the operands, which can be of any class, are unequal. You can use the
symbol interchangeably with the human-language versions
(isn't) with strings, numbers, and other classes.
|