Skip to content
TurtleKitty edited this page May 18, 2017 · 2 revisions

and?

A function that tests boolean conjunction. It differs from and in that it evaluates all its arguments and can be passed to higher-order functions.

    (and? 1 2) -> true
    (and? 0 1) -> false
    (and? true false (launch-the-missile))
        -> false ; but the missile totally launched
Clone this wiki locally