<- PRPL reference <- Logical Operators
Arguments | Result | Notation |
---|---|---|
bool bool | bool | [bool bool- bool] |
Pops two items from the stack, treats them as boolean values, 'ors' them, and pushes 0 or 1 back to the stack. If either items are TRUE, or both are TRUE, it returns TRUE to the stack. If both items are FALSE, FALSE is returned to the stack.
if (1 or (false)) trace("1 or false is true") endif