user> (comment "This is an example of setting a docstring during a def in Clojure 1.2. In 1.3, def takes an optional docstring directly.")
nil
user> (def ^{:doc "The nuge rocks"} ted-nugent)
#'user/ted-nugent
user> (doc ted-nugent)
-------------------------
user/ted-nugent
nil
The nuge rocks
user> (comment "This is an example of setting a docstring during a def in Clojure 1.2. In 1.3, def takes an optional docstring directly.")
nil
user> (def ^{:doc "The nuge rocks"} ted-nugent)
#'user/ted-nugent
user> (doc ted-nugent)
-------------------------
user/ted-nugent
nil
The nuge rocks