[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
coercion of symbols to strings
- To: common-lisp@su-ai.arpa
- Subject: coercion of symbols to strings
- From: fateman@dali.berkeley.edu (Richard Fateman)
- Date: Fri, 16 May 86 15:40:10 PDT
To convert a symbol to a string one apparently must use the string function.
That is, (coerce 'x 'string) is illegal. But (string 'x) ==> "X" .
Why not allow the former as a synonym for the latter?