User Tools

Site Tools


crpl:docs:or

This is an old revision of the document!


~~DISCUSSION~~ <- CRPL reference <- Logical Operators

or

ArgumentsResultNotation
Two items on the stackThe conditional OR of the two arguments b1 b2 – b3

Description

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.

Examples

TRUE TRUE Trace     #prints out 1 (TRUE) to the tracelog
TRUE FALSE Trace    #prints out 1 (TRUE) to the tracelog
FALSE TRUE Trace    #prints out 1 (TRUE) to the tracelog
FALSE FALSE Trace   #prints out 0 (FALSE) to the tracelog
crpl/docs/or.1404859310.txt.gz · Last modified: 2025/02/14 14:56 (external edit)