Function: ENABLE-SHARP-L

Documentation

Bind SHARPL-READER to the macro character #L. This function overrides (and forgets) and previous value of #L.

Source

(defun enable-sharp-l ()
  "Bind SHARPL-READER to the macro character #L.

This function overrides (and forgets) and previous value of #L."
  (set-dispatch-macro-character #\# #\L #'sharpL-reader))
Source Context