> (greater than) operator

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 larger, or false otherwise. Examples:

3 > 2        ; true
5 > 5        ; false
2.12 > 3     ; false
4.23 > 3.86  ; true

Notes

See Also
>= (greater than or equal to) operator
< (less than) operator