6 ms·
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
by amitprayal 3y 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