format:リスト内の値をCSV形式で一行に出力したい - lisp-cookbook-ja/common-lisp GitHub Wiki

See : リストの各要素をカンマ区切りで出力する

(format t "~{~a~^,~}" '(1 2 3))
;-> 1,2,3