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


See also

Arithmetic operators, BChg, BClr, BSet, BTst, NOT, OR, Shl, Shr, XOR


Previous: Acsh / ACosh Next: Arithmetic operators