-
Fredrik Hübinette (Hubbe) authored
Rev: doc/operators/and:1.3 Rev: doc/operators/logical_and:1.1 Rev: doc/operators/logical_or:1.1 Rev: doc/operators/or:1.3
Fredrik Hübinette (Hubbe) authoredRev: doc/operators/and:1.3 Rev: doc/operators/logical_and:1.1 Rev: doc/operators/logical_or:1.1 Rev: doc/operators/or:1.3
logical_or 281 B
NAME
|| - logical or
SYNTAX
a || b
DESCRIPTION
This operator does logical 'or' between expressions. It first
evaluates a and returns that if a is non-zero. Otherwise it
returns b. Note that b is not evaluated at all if a is non-zero.
KEYWORDS
operators
SEE ALSO
`|, &&