RosettaCodeData/Task/Comma-quibbling/Common-Lisp/comma-quibbling.lisp
2015-02-20 09:02:09 -05:00

7 lines
154 B
Common Lisp

(defun quibble (&rest args)
(format t "{~{~a~#[~; and ~:;, ~]~}}" args))
(quibble)
(quibble "ABC")
(quibble "ABC" "DEF")
(quibble "ABC" "DEF" "G" "H")