> Yes - I do get the result of the print function in the repl (i.e. nil), and > I'm trying to see how I can somehow prevent that nil from printing to stdout.
Yeah, the point I was making is that you are always going to see that 'nil' printed at the repl because it always evaluates and prints the result of the function, where as in reality that 'nil' would never get written to stdout (unless you explicitly captured it and wrote it yourself). It's the repl that's special - not the -main function. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. 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
