X# uses the following Logical operators:
Operator |
Example |
Meaning |
.AND. |
x .AND. y |
Returns TRUE when both operands are TRUE, otherwise FALSE. |
.OR. |
x .OR. y |
Returns TRUE with one or both operands are TRUE. Only when both operands are FALSE then FALSE is returned. |
.NOT. or ! |
.NOT. x |
Reverses TRUE and FALSE. |