Skip to content

Instantly share code, notes, and snippets.

@chespinoza
Created April 18, 2019 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chespinoza/757d84f7e8d1c8b772451e835bb55e4e to your computer and use it in GitHub Desktop.
Save chespinoza/757d84f7e8d1c8b772451e835bb55e4e to your computer and use it in GitHub Desktop.
Reading CSV files
(with-open [rdr (reader "my/file.csv")]
(->> rdr
(line-seq)
(map #(split % #","))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment