Skip to content
Turtle Kitty edited this page Aug 9, 2015 · 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