Skip to content

Instantly share code, notes, and snippets.

@eladmeidar
Created January 30, 2014 19:23
Show Gist options
  • Save eladmeidar/8716760 to your computer and use it in GitHub Desktop.
Save eladmeidar/8716760 to your computer and use it in GitHub Desktop.
de
class Array
def sum_numbers
total = 0
self.each do |member|
total += member
end
total
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment