up previous next
Equality Test

test whether two values are equal or not

Syntax
A = B
A <> B
  return BOOL

Description
The first form returns true if A is equal to B , otherwise it returns false (or signals an error if they are not comparable). The second form is the same as not(A=B) .

Example
/**/ 1=2;
false
/**/ 1<>2;
true

See Also