【发布时间】:2010-12-19 19:01:47
【问题描述】:
我想做这样的事情:
(setf list '(1 2 3 4 5 6))
(format t "~A some text here ~A ~A ~A more text here ~A ~A" list)
然后输出是
1 这里有一些文字 2 3 4 这里有更多文字 5 6
如何在不调用 (nth 1 list) (nth 2 list) 等的情况下执行此操作?
【问题讨论】:
标签: lisp common-lisp clisp