Anybody know what #+
and #-
operators means in .sbclrc
? I couldn't find it in the manual.
I see #-
in .sbclrc
after I installed quicklisp:
#-quicklisp
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(load quicklisp-init)))
I also see #+
in the SBCL User Manual, but I couldn't find explanation of their functionality. Looks like something related for loading individual module.
Are they only for SBCL implementation or part of Common lisp?