Skip to content

Instantly share code, notes, and snippets.

@BartoszCki
Created July 4, 2016 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BartoszCki/f2967b27d63d1bc6854ef796e6641f10 to your computer and use it in GitHub Desktop.
Save BartoszCki/f2967b27d63d1bc6854ef796e6641f10 to your computer and use it in GitHub Desktop.
tab = []
10.times do
tab << rand(10)
end
puts tab
suma = 0
tab.each{|i| suma = suma+i}
puts suma
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment