On Sun, Oct 5, 2008 at 10:44 AM, gerry xiao <[EMAIL PROTECTED]> wrote:
> hello to all
> newbie question:
> just like   System.out.println("hello world")
>
> how to change to clojure?

println is an instance method, so (.println instance ...)

out is a static field of System, so System/out

(.println System/out "hello world")

--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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to