On Sun, Feb 8, 2009 at 10:16 AM, Mark Volkmann
<r.mark.volkm...@gmail.com> wrote:
>
> I know print and println are intended for human readable output,
> whereas pr and prn produce output that can be read by the Clojure
> reader. I'm trying to find some cases where these differ. So far I've
> only found String where print/println output the value without quotes
> and pr/prn include the quotes. What are some other kinds of objects
> where the output differs?

The only other I see is Character:

user=> (prn \tab \x "end")
\tab \x "end"
nil

user=> (println \tab \x "end")
         x end
nil

--Chouser

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To post to this group, send email to clojure@googlegroups.com
To unsubscribe from this group, send email to 
clojure+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to