Skip to content

Instantly share code, notes, and snippets.

@jtmarmon
Created May 25, 2015 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jtmarmon/9e7491b8ebcff3d4d8f6 to your computer and use it in GitHub Desktop.
Save jtmarmon/9e7491b8ebcff3d4d8f6 to your computer and use it in GitHub Desktop.
dude what
(defn wtf [thing]
(prn "hi1")
(try
(postwalk #(if (keyword? %) (keyword (name %)) %) thing)
(catch Exception e (prn "dude what")))
(prn "hi2"))
;; Prints "hi1" and nothing else
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment