Ruby - File IO
What will be the output of this Ruby code?
Assuming
require 'csv'
CSV.foreach('data.csv') do |row|
puts row.inspect
endAssuming
data.csv contains:name,age Alice,30 Bob,25
