Skip to content

Instantly share code, notes, and snippets.

@abloom
Last active December 15, 2015 16:19
Show Gist options
  • Save abloom/5287862 to your computer and use it in GitHub Desktop.
Save abloom/5287862 to your computer and use it in GitHub Desktop.
def total(scores)
total = 0
scores.each do |score|
total += score
end
return total
end
total([1, 2, 3]) #=> 6
total([1, 2 ,3, 4, 5]) #=> 15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment