Re: Concatenation of objects...
Harley Gorrell <[email protected]>
| Newsgroups | gmane.lisp.allegro |
|---|---|
| Message-ID | <[email protected]> |
On Mon, 29 Sep 2003, Fabrizio Morbini wrote: > (read-from-string (concatenate 'string (symbol-name 'a) > (symbol-name 'b) (symbol-name 'c))) Is there something > more efficient? Well, I would write: (intern (format nil "~a~a~a" 'a 'b 'c) *package*) harley.