12
votes
The Clojure (or Lisp) Equivalent of a Compound Boolean Test
In Common Lisp, the following is also a common idiom:
(when (and (= a something) (= b another))
(foo))
Compare this to Doug Currie's answer using (and ... …
