OR

Synopsis
OR boolean1 boolean2
(OR boolean1 boolean2 boolean3 ...)
Description

Outputs TRUE if at least one input is TRUE. Outputs FALSE, otherwise. All inputs must be TRUE or FALSE.

The comparison is always case-insensitive, regardless of the value of CASEIGNOREDP. That is, "true", "True", and "TRUE" are all the same.

If given no inputs, OR outputs FALSE.

Example
SHOW OR "true "true
true
SHOW OR "true "false
true
SHOW OR "false "false
false

SourceForge.net Logo