=
Syntax object = object
= object object
.EQ object object

 
Explanation The equality operator compares two objects. If they are equal, the output is TRUE; otherwise it is FALSE. This operator is the same as the EQUAL? command.

The = form may be used either as a prefix or as an infix operator, although it must be surrounded by parentheses if its output is used in infix mode (not simply at the command line).

Example 4 = 5
Result: FALSE
= 4 5
Result: FALSE
.EQ 5 5
Result: TRUE

TopIndex