Symbols vs strings
Please excuse me if this is too simple a
question:
If I QUOTE a name I get this:
CL-USER 1 > 'foo
FOO
FOO
I can use STRING to get this:
CL-USER 2 > (string
'foo)
"FOO"
"FOO"
My question is, is there something like an UNSTRING
type function to get this:
CL-USER 3 > (unstring "foo")
FOO
Thanks in advance!
Bruce.