1 comments
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 ..)
1 0 Reply
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 ..)