Skip to content

Instantly share code, notes, and snippets.

@cemerick
Created May 11, 2011 16:56
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 cemerick/5eb24e0d2b3525b04601 to your computer and use it in GitHub Desktop.
Save cemerick/5eb24e0d2b3525b04601 to your computer and use it in GitHub Desktop.
classic_tags.clj
=> *clojure-version*
{:major 1, :minor 2, :incremental 0, :qualifier ""}
=> (defn ^String foo [])
#'user/foo
=> (meta #'foo)
{:ns #<Namespace user>, :name foo, :file "NO_SOURCE_PATH", :line 1, :arglists ([]), :tag java.lang.String}
=> (meta @#'foo)
{:ns #<Namespace user>, :name foo, :file "NO_SOURCE_PATH", :line 1, :arglists ([] [a]), :tag java.lang.String}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment