
José Fernando Dávila
Joined
5,010 Experience
50 Lessons Completed
0 Questions Solved
Activity
According to this previously, we could use "$." (before Ruby version 2.6). The best alternative I've found is the following:
CSV.foreach('example.csv', headers: true).with_index(1) do |row, index|
puts index
end