This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
crpl:docs:or [2013/01/14 19:01] – created virgilw | crpl:docs:or [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | TODO | + | |
+ | <- [[crpl: | ||
+ | ===== or ===== | ||
+ | |||
+ | or | ||
+ | |||
+ | === Description === | ||
+ | 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 === | ||
+ | <code 4RPL> | ||
+ | TRUE TRUE or Trace # | ||
+ | TRUE FALSE or Trace # | ||
+ | FALSE TRUE or Trace # | ||
+ | FALSE FALSE or Trace # |