Overview
Comparison operator performing an Equal To function.
The EQ
operator is a boolean operator which returns the value TRUE when the operands are equal.
The operands can be of any basic data type.
Example in IL
Result is TRUE
LD 40
EQ 40
ST Var1
Example in ST
VAR1 := 40 = 40;