Home / lang / and 
AND
Syntax
Result = Expression AND Expression

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

Example
PRINT TRUE AND FALSE

False
Example
PRINT TRUE AND TRUE

True
Example
PRINT 7 AND 11

3


See also
Arithmetic Operators  Logical Operators