Re: reader and "s

2010-01-11 Thread Raoul Duke
> Perhaps the problem is when you print the form after it's been > read? If you're using 'print' or 'println', strings are printed > without their double-quotes. Try using 'pr' or 'prn' instead. thanks, that sounds quite likely! -- You received this message because you are subscribed to the Goo

Re: reader and "s

2010-01-09 Thread Kasim
Try escaping it: (println "\"foo\"") On Jan 8, 4:34 pm, Raoul Duke wrote: > hi, > > i'm using (read) and it seems to get rid of double quotes e.g. > >     (println "foo") > > is read as > >     (println foo) > > as far as i can tell so far. how do i get the quotes to come through? > or don't i

Re: reader and "s

2010-01-08 Thread Chouser
On Fri, Jan 8, 2010 at 7:34 PM, Raoul Duke wrote: > hi, > > i'm using (read) and it seems to get rid of double quotes e.g. This seems very unlikely to me, though it would be easier to tell for sure if you included the code that was failing. Perhaps the problem is when you print the form after it

reader and "s

2010-01-08 Thread Raoul Duke
hi, i'm using (read) and it seems to get rid of double quotes e.g. (println "foo") is read as (println foo) as far as i can tell so far. how do i get the quotes to come through? or don't i want to? thanks! -- You received this message because you are subscribed to the Google Groups "