Skip to content

Instantly share code, notes, and snippets.

@mamonu
Created June 13, 2015 13:29
Show Gist options
  • Select an option

  • Save mamonu/c18494e021622b62c248 to your computer and use it in GitHub Desktop.

Select an option

Save mamonu/c18494e021622b62c248 to your computer and use it in GitHub Desktop.
open and print a file in clojure
(defn print-file [filename]
(with-open [rdr (clojure.java.io/reader filename)]
(println (line-seq rdr))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment