From: Harley Gorrell

Subject: Re: Concatenation of objects...

Date: 2003-9-30 13:05

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.