Private is an illusion in Clojure. You can call (#'p/truth) to call a "private" function.
(#'p/truth)
Also, although there is no def-, you can have private "constants": (def ^:private meaning-of-death ..)
def-
(def ^:private meaning-of-death ..)
Private is an illusion in Clojure. You can call
(#'p/truth)
to call a "private" function.Also, although there is no
def-
, you can have private "constants":(def ^:private meaning-of-death ..)