RosettaCodeData/Task/File-input-output/Clojure/file-input-output-2.clj

6 lines
112 B
Clojure
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
;; simple file writing
(spit "filename.txt" "your content here")
;; simple file reading
(slurp "filename.txt")