Update ruby-ru.html.markdown

This commit is contained in:
Chashmeet Singh 2015-10-05 15:31:46 +05:30
parent ad4d6f3c1e
commit 142d33340a

View File

@ -158,6 +158,7 @@ array << 6 #=> [1, 2, 3, 4, 5, 6]
hash = {'color' => 'green', 'number' => 5}
hash.keys #=> ['color', 'number']
hash.values #=> ['green', 5]
# Значение в хэше легко может быть найдено по ключу:
hash['color'] #=> 'green'