# Pastebin 3fktOx7x (defn test-args [coll & {:keys [tempo] :or {tempo 100}}] tempo) (test-args []); => 100 (test-args [] {:tempo 10}); => raises Exception ;; How do I pass-in a different value of tempo?