| Also interesting, clojure's print methods will handle some escapes, but not 
others

I think that's just that \t is printed as \t. Like a tab shows up as \t. 
Whereas say a Unicode like \u1234 will show the character of it. You can seek 
that here:

    (print (pr-str "foo\u0009bar"))
    "foo\tbar"

Also, what is \001? I would have expected only the first 0 to be escaped. Is 
this a Java special escape syntax?

-- 
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
Note that posts from new members are moderated - please be patient with your 
first post.
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
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to