Skip to content

Instantly share code, notes, and snippets.

@samueljoli
Forked from Omrika/nested data structure
Last active August 29, 2015 14:26
Show Gist options
  • Save samueljoli/d1c9691a8da03fe9b92a to your computer and use it in GitHub Desktop.
Save samueljoli/d1c9691a8da03fe9b92a to your computer and use it in GitHub Desktop.
flatiron_school = {:teachers=>[{:name=>"steph"}, {:name=>"uzo"}, {:name=>"blake"}], :students => [{:name => "giancarlo", :grade => 100, :address => "bronx"},{:name => "jamie", :grade => 200, :address => "NJ"}]}
flatiron_school.each do |key, value|
value.each do |names|
puts names[:name]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment