PERFORMS A LOGICAL "OR" BETWEEN TWO LOGICAL EXPRESSIONS
ACTION
The operator OR returns the logical value (true or false) from the logical evaluation between 2 logical expressions :
TRUE when at least one of the 2 logical expressions is TRUE,
FALSE when the 2 expressions are FALSE.
SYNTAX:
L1 OR L2
USE ERROR EXAMPLE
dim a
a=1
if (a=1) or (a=2) then print "a is 1 or 2"
OR
OR
SEE ALSO
IF
THEN
ELSE
END_IF
WHILE
END_WHILE
REPEAT
UNTIL
AND
NOT