RosettaCodeData/Task/Named-parameters/Common-Lisp/named-parameters-2.lisp

9 lines
164 B
Common Lisp
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
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