(no title)
amitprayal | 2 years ago
(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
No comments yet.