AND
Syntax AND object1 object2 
(AND object1 object2 object3 ...) 
(AND object) 
object1 AND object2 
object1 AND object2 AND object3
 
Explanation AND accepts one or more inputs, which must be either TRUE or FALSE. AND reports TRUE if all of its inputs are true; otherwise it reports FALSE. By default, AND expects two inputs. If fewer or more inputs are supplied, both AND and its inputs must be enclosed in parentheses. If the result of the prefix form of AND is used in another operation, it must also be placed in parentheses.

See also OR.

Examples AND "TRUE "TRUE 
Result: TRUE 
"TRUE AND "TRUE 
Result: TRUE 
AND "TRUE "FALSE 
Result: FALSE 
(AND "TRUE "FALSE "TRUE) 
Result: FALSE 
"TRUE AND "FALSE AND "TRUE 
Result: FALSE 
MAKE "rslt (AND "TRUE "TRUE) 
Result: TRUE 

TopIndex