Skip to content

Instantly share code, notes, and snippets.

@kotarak
Created August 30, 2013 21:10
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 kotarak/6394311 to your computer and use it in GitHub Desktop.
Save kotarak/6394311 to your computer and use it in GitHub Desktop.
user=> (ns foo.bar (:refer-clojure :exclude [map]))
nil
foo.bar=> (def map :my-map)
#'foo.bar/map
foo.bar=> map
:my-map
foo.bar=> (in-ns 'user)
#<Namespace user>
user=> (ns foo.bar)
nil
foo.bar=> map
#<core$map clojure.core$map@2591a87d>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment