Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
(defun print-name (&key first (last "?"))
|
||||
(princ last)
|
||||
(when first
|
||||
(princ ", ")
|
||||
(princ first))
|
||||
(values))
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
CL-USER> (print-name)
|
||||
?
|
||||
CL-USER> (print-name :first "John")
|
||||
?, John
|
||||
CL-USER> (print-name :first "John" :last "Doe")
|
||||
Doe, John
|
||||
CL-USER> (print-name :last "Doe")
|
||||
Doe
|
||||
Loading…
Add table
Add a link
Reference in a new issue