Skip to content

Instantly share code, notes, and snippets.

@si14
Last active December 23, 2015 12:59
Show Gist options
  • Save si14/6638584 to your computer and use it in GitHub Desktop.
Save si14/6638584 to your computer and use it in GitHub Desktop.
(defn tags-types [form]
(clojure.walk/prewalk
(fn [form]
(when-let [m (meta form)]
(when-let [t (:tag m)]
(prn m t (type t))))
form)
form))
;; enable printing of meta in repl with (set! *print-meta* true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment