[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: string to symbol, how?
- To: info-mcl@digitool.com
- Subject: Re: string to symbol, how?
- From: Ora Lassila <ora@ISL1.RI.CMU.EDU>
- Date: Wed, 10 May 95 09:22:29 EDT
- Sender: owner-info-mcl@digitool.com
Several different approaches have been suggested so far, like reading
from a string, reading from a string input stream, and interning. What
about
(MAKE-SYMBOL string)
This creates an _uninterned_ symbol, it is not inserted in any package
(this may or may not be desirable). One can insert the symbol into a
package by calling IMPORT.
- Ora Lassila