This is an old revision of the document!
⇐ Index
5 gte (5)
The first item on the stack is compared to the second item on the stack. Both items are removed from the stack. If the first item is greater than or equal to the second, True (1) is pushed to the stack. If not, False (o) is pushed to the stack.
if (2 gte (2)) trace("2 is greater than or equal to 2") endif
⇐ Index