Skip to content
This repository was archived by the owner on Sep 27, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions class2_homework/Sedef_Hristov_2.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
require "csv"

m1b= 0.00

CSV.foreach("bank.csv") do |row|
m1b = m1b + row[1].to_f

end

puts m1b