Skip to content

Instantly share code, notes, and snippets.

@fogus
Created July 27, 2010 18:45
Show Gist options
  • Save fogus/492659 to your computer and use it in GitHub Desktop.
Save fogus/492659 to your computer and use it in GitHub Desktop.
(ns a)
(defn ^{:private true} foo [] 42)
(ns b)
(a/foo)
; explosion
(def n (find-ns 'a))
(((ns-map n) 'foo))
;=> 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment