Fork me on GitHub
#docs
<
2016-08-24
>
wanderlustzoe19:08:26

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

wanderlustzoe19:08:35

in scala, java, etc you have:

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

danielcompton20:08:08

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