Skip to content

Instantly share code, notes, and snippets.

@bittersweet
Created December 12, 2011 14:40
Show Gist options
  • Save bittersweet/1467545 to your computer and use it in GitHub Desktop.
Save bittersweet/1467545 to your computer and use it in GitHub Desktop.
autovivicating hash
def autovivicating_hash
Hash.new {|ht,k| ht[k] = autovivicating_hash}
end
x = autovivicating_hash
x["a"]["b"]["c"] = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment