OR

Syntax:

Y boolean_1 OR Y boolean_2
N integer_1 or N interger_2

 

Return Value:

Y result/N result

 
Precedence:2
Description:

OR results in TRUE if either operand is TRUE. The result is only FALSE if they are both FALSE. For N operands the result is the bitwise OR of the operands. You may prefer to use the ! operator in this case.

 

Example:

TRUE OR FALSE = TRUE
TRUE OR TRUE = TRUE/FALSE OR FALSE = FALSE
5 OR 6 = 7