~~NOTOC~~ <=[[4rpl:start| Index]] \\ <=[[4rpl:start#compatators| Comparators]] ====== gt ====== 5 gt (4) ===== 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 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 ===== # Warp notation if (42 gt (1)) trace("42 is greater than 1") endif <=[[4rpl:start| Index]]