You must log in or # to comment.
Private is an illusion in Clojure. You can call
(
to call a “private” function.Also, although there is no
def-
, you can have private “constants”:(def ^:private meaning-of-death ..)
Private is an illusion in Clojure. You can call (
to call a “private” function.
Also, although there is no def-
, you can have private “constants”: (def ^:private meaning-of-death ..)