Advertisement
Guest User

Untitled

a guest
Oct 16th, 2018
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.55 KB | None | 0 0
  1. (defun some-func (par1 par2 par3)
  2.     "This docstring should ostensibly document
  3. the high level idea behind some-func, but it doesn't.
  4. rather it asks: should continuing lines of docstrings
  5. be indented to the same level as the first?"
  6.     nil) ; because everything is nil in nil
  7.  
  8.  
  9. (defun some-func (par1 par2 par3)
  10.     "This docstring should ostensibly document
  11.     the high level idea behind some-func, but it doesn't.
  12.     rather it asks: should continuing lines of docstrings
  13.     be indented to the same level as the first?"
  14.     nil) ; because everything is nil in nil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement