Result = Expression AND Expression
Computes the logical and of two boolean expressions, or the numerical and of two integer numbers.
PRINT TRUE AND FALSE <hr>False
PRINT TRUE AND TRUE <hr>True
PRINT 7 AND 11 <hr>3