Hacker News new | ask | show | jobs
by amitprayal 1124 days ago
I think Clojure syntax is more intuitive than CL , at least to someone who has not spend a lot of time in CL One e.g. I can see for "destructuring"

(let [ [a b c] [1 2 3]] (+ a b c))

as opposed to

(multiple-value-bind (a b c) (values 2 3 5) (+ a b c))

Also datastructres maps, sets sequence abstraction in Clojure seem more Organic...in CL its feels like bolted on