Created
July 25, 2013 12:52
-
-
Save fbmnds/6079308 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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