docs

About docs of Clojure & libs
wanderlustzoe 2016-08-24T19:43:26.000004Z

how does one add documentation to the beginning of a clojure namespace?

wanderlustzoe 2016-08-24T19:44:35.000005Z

in scala, java, etc you have:

/**
*
*/
whats the equivalent in clojure?

danielcompton 2016-08-24T20:58:08.000006Z

(ns name.space
  “This is my multi-line
   docstring”
  (:require …

🌟 2