Skip to content

Instantly share code, notes, and snippets.

@marktriggs
Created October 25, 2017 20:36
Show Gist options
  • Save marktriggs/5d166767b9bd6cdf624bf2a808bc46ab to your computer and use it in GitHub Desktop.
Save marktriggs/5d166767b9bd6cdf624bf2a808bc46ab to your computer and use it in GitHub Desktop.
(mst@thweeble) ~/tmp$ sbcl
This is SBCL 1.2.4.debian, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.
SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.
* (defun func-a () "am I docstring or return?")
FUNC-A
* (defun func-b () "I must be docstring" "and I must be return")
FUNC-B
* (func-a)
"am I docstring or return?"
* (func-b)
"and I must be return"
* (documentation 'func-a 'function)
NIL
* (documentation 'func-b 'function)
"I must be docstring"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment