Home / lang / or 
OR
Syntax
Result = Expression OR Expression

Computes the logical or of two boolean expressions, or the numerical or of two integer numbers.

Examples

PRINT TRUE OR FALSE
<hr>True
PRINT FALSE OR FALSE
<hr>False
PRINT 7 OR 11
<hr>15

See also

Logical Operators