Skip to content
TurtleKitty edited this page May 11, 2019 · 2 revisions

and

Tests conjunction of two booleans. It short-circuits; if any expression evaluates to false, it stops.

(and 1 2) ; true
(and 0 1) ; false
(and true false (launch-the-missile))  ; missile not launched
Clone this wiki locally