Type | Assocation | Precedence | Input types | Output types |
binary | left | 3 | int float |
bool |
This operator compares the first operand to the second operand and returns true if the first operand is smaller, or false otherwise. Examples:
3 < 2 ; false 5 < 5 ; false 2.12 < 3 ; true 4.23 < 3.86 ; false
Notes
See Also
<= (less than or equal to) operator
> (greater than) operator