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.

Example
PRINT TRUE OR FALSE

True
Example
PRINT FALSE OR FALSE

False
Example
PRINT 7 OR 11

15


See also
Logical Operators