On Thu, Nov 05, 2020 at 04:16:09PM +0100, Christopher Dimech wrote: > > When using defun, can one include a Self Documenting string or is > Self-Documentation only applicable for interactive functions? > > (defun Gdn () > "Description" > Body ... > ) No need to be interactive. Minor nit: convention in Lisp is (defun Gdn () "Description" Body ... ) i.e. closing parens don't get a line of their own. Readers will thank you :) Cheers - t