| |||
| Home > Symbols, Literals, Expressions, and Operators > Relational operators | |||
Table 33 shows the relational operators. These act on two operands of the same type to produce a logical value.
The operands can be one of:
numeric
PC-relative
register-relative
strings.
Strings are sorted using ASCII ordering. String A is
less than string B if it is a leading substring of
string B, or if the left-most character in which
the two strings differ is less in string A than
in string B.
Arithmetic values are unsigned, so the value of 0>-1 is {FALSE}.
Table 33. Relational operators
Operator | Alias | Usage | Explanation |
|---|---|---|---|
| == |
| A equal to B |
|
| A greater than B | |
|
| A greater than or equal to B | |
|
| A less than B | |
|
| A less than or equal to B | |
| <> != |
| A not equal to B |