This is an old revision of the document!
~~DISCUSSION~~ <- CRPL reference <- Logical Operators
Arguments | Result | Notation |
---|---|---|
Two items on the stack | The conditional OR of the two arguments | b1 b2 – b3 |
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.
example goes here