~~NOTOC~~ <=[[4rpl:start| Index]] \\ <=[[4rpl:start#compatators| Comparators]] ====== gte ====== 5 gte (5) ===== Description ===== 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. Note: See [[4rpl:Data Types]] for comparison between dissimilar types and type conversion. ===== Examples ===== if (2 gte (2)) trace("2 is greater than or equal to 2") endif <=[[4rpl:start| Index]]