Hello,

While trying to create a very small Hello world demonstration to a
friend, I saw that (print) and (println) are concatenating their
arguments with spaces interposed.

I thought at first (println "a") was a shorter variant of (.println
*out* "a") and (println "a" "b" "c") of (doseq [str ["a" "b" "c"]]
(.println *out* str)) but it's not the case.

Maybe this could be pointed out in the docs ( that print and println
interpose a space between their arguments) ?

Regards,

-- 
Laurent

--~--~---------~--~----~------------~-------~--~----~
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