>=
Syntax number >= number
>= number number
.GE number number

 
Explanation The Greater Than or Equal operator compares two numbers. If the first number is greater than or equal to the second number, the output is TRUE; otherwise, it is FALSE.

The >= form may be used either as a prefix or as an infix operator, although it must be surrounded by parentheses if its output is used in infix mode (not simply at the command line).

Example 4 >= 5
Result: FALSE
.GE 5 5
Result: TRUE

TopIndex