Last active
December 24, 2015 08:29
-
-
Save ivanbrennan/6770996 to your computer and use it in GitHub Desktop.
Hashes
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
| movie_collection = { "horror" => ["Kindergarten Cop", "Psycho", "Last House on the Left"], | |
| "comedy" => ["Beverly Hills Cop", "Jackass"], | |
| "fantasy" => ["The Hobbit", "Willow", "The Princess Bride"]} | |
| recipes = { "bolognese sauce" => ["olive oil", "onion", "garlic", "tomato", "basil", "oregano"], | |
| "omlette" => ["eggs", "milk", "cheese"], | |
| "chicken adobo" => ["chicken", "vinegar", "onions", "garlic", "ginger", "soy sauch"]} | |
| user_profiles = { "Jordan" => { "favorite colors" => ["red", "yellow", "blue"], | |
| "personal_essays" => ["essay 1", "essay 2", "essay 3"] }, | |
| "Arlene" => { "favorite colors" => ["black", "gold", "green"], | |
| "personal essays" => ["essay A", "essay B", "essay C"] } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment