Skip to content

Instantly share code, notes, and snippets.

@fbmnds
Created July 25, 2013 12:52
Show Gist options
  • Select an option

  • Save fbmnds/6079308 to your computer and use it in GitHub Desktop.

Select an option

Save fbmnds/6079308 to your computer and use it in GitHub Desktop.
(defn multiply-file [in-file out-file n]
(with-open [rdr (io/reader in-file)
wrtr (io/writer out-file)]
(doseq [line (line-seq rdr)]
(.write wrtr (multiply-string line n)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment