<- PRPL reference <- Logical Operators
Arguments | Result | Notation |
---|---|---|
bool | bool | [bool- bool] |
Pops one item from the stack, treats it as a boolean value, 'nots' it, and pushes 0 or 1 back to the stack. If the item is TRUE, 0 is pushed to the stack. If the item is FALSE, 1 is pushed to the stack.
if (not(false)) trace("not false is true") endif