Skip to content

Instantly share code, notes, and snippets.

@marvinahv
Created September 6, 2015 00:33
Show Gist options
  • Save marvinahv/d58301483503cb99e13a to your computer and use it in GitHub Desktop.
Save marvinahv/d58301483503cb99e13a to your computer and use it in GitHub Desktop.
### If you get an arbitrary number of numbers, sum them.
def sum_numbers(*args)
args.inject(:+)
end
# puts sum_numbers(1,4,3,2,5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment