Created
July 4, 2016 13:14
-
-
Save BartoszCki/f2967b27d63d1bc6854ef796e6641f10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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