Hi, I'm new to Clojure and I love it so far. It's the first Lisp that
I can use professionally and it's great.

I have one questions about the "programming style" used in the Clojure
standard library. For example, in the file core.clj, I see:

(. *out* (flush))

Why is it written like this? Could we write it like this instead:

(. *out* flush)

or the more concise:

(.flush *out*)

Is it more efficient internally?

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