-
Notifications
You must be signed in to change notification settings - Fork 2
and?
TurtleKitty edited this page May 11, 2019
·
2 revisions
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