On Dec 5, 2008, at 1:33 PM, Brian Doyle wrote:
> I started to play with cond-let in the contrib.cond package and got an
> unexpected error:
>
> user=> (cond-let [x (zero? 0)] (println "hello world"))
> java.lang.Exception: Unsupported binding form: (zero? 0)
> (NO_SOURCE_FILE:11)
I updated co
I started to play with cond-let in the contrib.cond package and got an
unexpected error:
user=> (cond-let [x (zero? 0)] (println "hello world"))
java.lang.Exception: Unsupported binding form: (zero? 0) (NO_SOURCE_FILE:11)
user=> (cond-let x (zero? 0) (println "hello world"))
hello world
Maybe it