On Mar 24, 12:42 pm, Parth Malwankar <parth.malwan...@gmail.com>
wrote:
> user=> (with-open [f (writer (file "test.txt"))]
>          (binding [*out* f]
>            (println "hello world !!!")))

Or even more simply:

(use 'clojure.contrib.duck-streams)
(spit  "test.txt"  "Hello, world!\n")

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