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.

Examples

PRINT TRUE AND FALSE
<hr>False
PRINT TRUE AND TRUE
<hr>True
PRINT 7 AND 11
<hr>3

See also

Arithmetic Operators  Logical Operators