我想做类似的事情:
(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) 等的情况下做到这一点?
我想做类似的事情:
(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) 等的情况下做到这一点?