- defn = public
- defn- = private
Perhaps I have bad clojure coding style -- but I find that most functions I write in clojure are small helper functions that I do not want to expose.
Is there some configuration option, where:
- defn = private by default,
- and to make something public, I have to do defn+ ?
Thanks!