How have you used the meta data information in your Clojure Program?
I saw one example from Programming Clojure
(defn shout [#^{:tag String} message] (.toUpperCase message))
;; Clojure casts message to String and then calls the method.
What are some of the usage? This form of programming is completely new to me. Thanks.
