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

6 lines
112 B
Clojure
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
;; simple file writing
(spit "filename.txt" "your content here")
;; simple file reading
(slurp "filename.txt")