Skip to content

Instantly share code, notes, and snippets.

@mehagel
Created May 6, 2013 21:24
Show Gist options
  • Save mehagel/5528325 to your computer and use it in GitHub Desktop.
Save mehagel/5528325 to your computer and use it in GitHub Desktop.
def total(array)
results =0
array.length.times do |i|
results = results + array[i]
end
results
end
total ([5,6,7,8])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment