Probably easy lisp question

"Jochen Mueller" <[email protected]> Fri, 9 May 2003 16:07:51 +0200
Newsgroups gmane.lisp.corman
Message-ID <000701c31634$647a1a20$267550d9@gmbigb>
Hi,
i don't know if this mailing list is also for problems which are concerning ansi common lisp.
I want to convert a number into a string.

(defun makestrvar (x)
 .....
)

should evalutate to

(makestrvar 3) -> "var3"
(makestrvar 1000) -> "var1000"

I could not find a suitable function to convert a number to a string. It would be great if someone can help me.

Thanks in advance,
 Jochen