…expr… > …expr…
…expr… < …expr…
t, t -> BOOL
Strict comparison operators.
Values of any type can be compared, but both values must have the same type.
| expression | evaluates to |
|---|---|
| 1 > 0 | TRUE |
| 1 > 1 | FALSE |
| TRUE > FALSE | TRUE |
| "foo" < "bar" | FALSE |
| (5; 1) < (5; 2) | TRUE |