Skip to content

Instantly share code, notes, and snippets.

@yurikoval
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save yurikoval/ce9b909ae0dd3f0c25fe to your computer and use it in GitHub Desktop.

Select an option

Save yurikoval/ce9b909ae0dd3f0c25fe to your computer and use it in GitHub Desktop.
each_with_index with key, value and index
items = {
'orange' => 'shoes',
'pink' => 'skirt',
'borwn' => 'socks',
'blue' => 'hat'
}
items.each.with_index(1) do |(color, item), index|
puts "#{index}. Please wear your #{color} #{item}."
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment