On Sat, Jun 17, 2017 at 05:39:15PM -0800, Christopher Howard wrote:
> I think I found what I was looking for, modifying an example from the docs:
> 
> : (mapcar pack (split (chop (line T)) " "))

Minor optimization: You can avoid the overhead of 'chop':

   (mapcar pack (split (line) " "))


> On 06/17/2017 02:35 PM, Joh-Tob Schäg wrote:
> > Take a look at 'read.

This does not solve the problem, because 'str' *is* 'read' internally, and
therefore evaluates the read macros.

> > You may need to 'eval the result.

'eval' is not needed, and in fact is what Christopher wanted to avoid (i.e. the
evaluation triggered by the read macros)

♪♫ Alex

-- 
UNSUBSCRIBE: mailto:picolisp@software-lab.de?subject=Unsubscribe

Reply via email to