2010-11-06 22:38:31 +00:00
|
|
|
(meditations
|
2010-11-08 23:27:18 +00:00
|
|
|
"Destructuring is an arbiter: it breaks up arguments"
|
2010-11-06 22:38:31 +00:00
|
|
|
(= __ ((fn [[a b]] (str b a))
|
2010-11-08 23:27:18 +00:00
|
|
|
[:foo :bar]))
|
|
|
|
|
|
|
|
"Whether in function definitions"
|
|
|
|
(= "First comes love, then comes marriage, then comes Clojure with the baby carriage"
|
|
|
|
((fn [[a b c]] __)
|
|
|
|
["love" "marriage" "Clojure"]))
|
|
|
|
|
|
|
|
)
|