ROPE Language Reference - "ge"

"ge" stands for "Greater than or Equal to".

"ge" takes two items from the stack, compares them and pushes back 1 if the first is greater than, or equal to the second - or 0 if the first is less than the second.

It is an error to compare two values of different types: either both must integers or both must be strings.

10 20 ge println         # -- prints 0
10 10 ge println         # -- prints 1
20 10 ge println         # -- prints 1

See Also

le gt