11

Собираем строку из различных объектов

(with-output-to-string (stream)
    (dolist (char '(#\Z #\a #\p #\p #\a #\, #\Space))
      (princ char stream))
    (format stream "~S - ~S" 1940 1993))
; "Zappa, 1940 - 1993"
-----------