I want to put a possibly infinite amount of numbers in and then it's added to an array, which is then all added together.
I saw this on a few other questions but they were all just puts-ing the array, not summing.
case input
 when 'add'
 puts "Enter the numbers to add on separate lines then hit enter on another line"
 add_array = []
 numbers_to_add = " "
 while numbers_to_add != ""
  numbers_to_add = gets.chomp
  add_array.push numbers_to_add
 end
 add_array.delete('')
 add_array.map(&:to_f).inject(:+)
 puts add_array
end
 
     
    