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