On Wed, Sep 8, 2010 at 2:26 PM, Sean <stanleyzhang2...@gmail.com> wrote:

> Hi,
>
> I'm new to Clojure. This is also my first time posting here.
> When I use REPL and print something out, I always get a nil printed.
> For example, (print "Clojure"), I got: clojurenil. Where does the nil
> come from?
>
> Thanks a lot!
>

Try

(println "Clojure")

The nil is because the return value of print/println is nil.

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

Reply via email to