On Mar 24, 12:42 pm, Parth Malwankar <[email protected]>
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 [email protected]
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