AND

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

PRINT TRUE AND TRUE
=> True

PRINT 7 AND 11
=> 3


Referenced by :