Created
May 10, 2012 22:18
-
-
Save davidboy/2656256 to your computer and use it in GitHub Desktop.
CSV hackyness
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
require 'csv' | |
CSV.read('results_formatted_copy.csv').each do |row| | |
puts row.class | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
require 'csv'
CSV.foreach('results_formatted_copy.csv') do |row|
puts row.class
end