|
|
|
|
|
by keychera
119 days ago
|
|
I enjoyed the "Coming from Clojure" section. I guess there seems to be more differences not yet outlined there. One that I spotted is that destructuring is also really different but not mentioned there. I also tried the the example destructuring from the tour page and these below doesn't run correctly: [let #[a b c] #[1 2 3]] ; this doesnt compile [let {name age} {:name "Loon" :age 1}] [println age] ; age unbounded |
|