This is what I have so far:
(defn cities []
(with-open [rdr (reader)]
(doseq [line (next (line-seq rdr))]
(print line))))
I am able to print all the rows minus the first but am unable to return all the rows? How would I be able to do this