Skip to content

Instantly share code, notes, and snippets.

@ivanbrennan
Last active December 24, 2015 08:29
Show Gist options
  • Select an option

  • Save ivanbrennan/6770996 to your computer and use it in GitHub Desktop.

Select an option

Save ivanbrennan/6770996 to your computer and use it in GitHub Desktop.
Hashes
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