This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| crpl:docs:or [2013/01/18 06:09] – grauniad | crpl:docs:or [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ~~DISCUSSION~~ | + | |
| <- [[crpl: | <- [[crpl: | ||
| ===== or ===== | ===== or ===== | ||
| - | ^Arguments^Result^Notation^ | + | or |
| - | |Two items on the stack|The conditional OR of the two arguments |'' | + | |
| === Description === | === Description === | ||
| Pops two items from the stack, treats them as boolean values, ' | Pops two items from the stack, treats them as boolean values, ' | ||
| + | |||
| + | 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. | ||
| === Examples === | === Examples === | ||
| - | < | + | < |
| + | TRUE TRUE or Trace # | ||
| + | TRUE FALSE or Trace # | ||
| + | FALSE TRUE or Trace # | ||
| + | FALSE FALSE or Trace # | ||