| I'm printing out a list with prn, but quotes around strings get dropped. This is a problem because I want to sread the list back in. arc> (prn (list 'a 2 "c"))
(a 2 c) ; This is the printed output from prn
(a 2 "c") ; This is the REPL's view of the list
Is this a bug in prn (disp)? I guess you want (prn "Hello") to drop the quotes. But is there a way to print out the list the same way the REPL does, with quotes preserved? |