Operator: = (Equal) |
Top Previous Next |
The = operator compares two numbers or strings and returns TRUE if they are equal. Care must be taken when used with floating-point numbers due to rounding errors, e.g. 1.1 + 2.2 <> 3.3.
The comparison is case-sensitive. See example 2 below.
Example 1:
INCLUDE rtcu.inc
Example 2:
INCLUDE rtcu.inc |