I am simply trying to print a LISP function's documentation string. The LISP documentation is fairly ambiguous with regard to doctypes, so I am unsure as to how to do this. This is what I have so far:
(defun pr(x) "This is a docstring!" (+ x 1))
(documentation #'pr t)
I haven't found any concise answers on how to do this. Where is this wrong?