I want to be able to programatically define a docstring for one of my functions in clojure.
For example, I want to be able to do something like this:
(defn my-function
(str "Here are some numbers " (range 10))
[]
(println "This function does nothing right now."))
However, when I attempt to do this, I get "Parameter decleration str should be a vector". Is this just not possible in clojure or is there some sneaky way to do this? It would be useful to me to programatically generate parts of the docstring.