this post was submitted on 06 Oct 2023
0 points (50.0% liked)
Lisp
53 readers
3 users here now
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the 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 ..)