|
From: <don...@is...> - 2023-07-14 02:30:44
|
(setf list '("abc" "def" "qwe
rty
uiop" "zxc"))
(with-output-to-string (s)(loop for x in list do (format s "~s~c" x #\tab)))
"\"abc\" \"def\"
\"qwe
rty
uiop\" \"zxc\" "
Why is there an extra new line before the list element that contains
the newlines?
Is there some way to suppress it ?
|