MjkxODIwMDM3Mjl8MjA1LjEzNC4xNzIuMw==For some reason a simple thing turns out to be hard1. This is what I want to do; I want to concatenate a list of strings into a single string. I do not want this;
(concatenate 'string "no" "not" "a fixed" "list," "fuck" "it")
But this;
(somefunction alist)
Where alist is;
(list "yes" "just" "a" "list")
The answers I found so [...]
↧