(def client {:name "Super Co."
:location "Philadelphia"
:description "The worldwide leader in plastic tableware."})
(let [{category :category, :or {category "Category not found", :comms "email"}, :defaults df} client]
(println df))
This works on Alpha 5 but fails on Alpha 6 because :comms is not bound or referenced.
Adding :keys [& :comms] makes it work on Alpha 6.
This works on Alpha 5 but fails on Alpha 6 because
:commsis not bound or referenced.Adding
:keys [& :comms]makes it work on Alpha 6.