Re: Printing Strings in Lists

2009-01-23 Thread Kevin Albrecht
Ah, exactly what I was looking for, thanks. On Jan 23, 11:15 am, Kevin Downey wrote: > prn > > On Fri, Jan 23, 2009 at 11:00 AM, Kevin Albrecht wrote: > > > Below are two operations that print (1 2 3 4).  How can I do something > > similar to print ("1 2 3" 4) to standard out? > > > (println '(

Re: Printing Strings in Lists

2009-01-23 Thread Kevin Downey
prn On Fri, Jan 23, 2009 at 11:00 AM, Kevin Albrecht wrote: > > Below are two operations that print (1 2 3 4). How can I do something > similar to print ("1 2 3" 4) to standard out? > > (println '("1 2 3" 4)) > -> (1 2 3 4) > > (def x "1 2 3") > (println `(~x 4)) > -> (1 2 3 4) > > --Kevin Albr