Skip to content

Instantly share code, notes, and snippets.

@beezeebly
Created December 29, 2013 20:34
Show Gist options
  • Save beezeebly/8174512 to your computer and use it in GitHub Desktop.
Save beezeebly/8174512 to your computer and use it in GitHub Desktop.
Ruby Hash example
empty_hash = Hash.new # => {}
default_hash = Hash.new("Harry Potter and the Philosopher's Stone")
empty_hash["book"] # => nil
default_hash["book"] # => "Harry Potter and the Philosopher's Stone"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment