;; ccl output this: " #1=___ qwe #1# "
(setf *print-circle* t)
(defun centered-string (n string)
(let ((w (max 0 (floor (- n (length string) 4) 2))))
(let ((m (make-string w :initial-element #\_)))
(format nil " ~a ~a ~a " m string m))))
(print (centered-string 14 "qwe"))