Skip to content

Instantly share code, notes, and snippets.

@atroche
Created March 1, 2017 04:13
Show Gist options
  • Save atroche/a2766ad9fd92e21b5d8c161f0a8e9565 to your computer and use it in GitHub Desktop.
Save atroche/a2766ad9fd92e21b5d8c161f0a8e9565 to your computer and use it in GitHub Desktop.
(with-open [rdr (io/reader ten-gb-filename)]
(loop [line-count 0]
(if-not (.readLine rdr)
line-count
(recur (inc line-count)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment