Skip to content

Instantly share code, notes, and snippets.

Created March 3, 2012 20:18
Show Gist options
  • Save anonymous/1967991 to your computer and use it in GitHub Desktop.
Save anonymous/1967991 to your computer and use it in GitHub Desktop.
1.9.3p0 :001 > a = Hash.new('default')
=> {}
1.9.3p0 :002 > a['cat']
=> "default"
1.9.3p0 :003 > a['dog']
=> "default"
1.9.3p0 :004 > a['real_key'] = 'real_value'
=> "real_value"
1.9.3p0 :005 > a
=> {"real_key"=>"real_value"}
1.9.3p0 :006 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment