| Syntax: | Y boolean_1 OR Y boolean_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 |
|