Skip to content

Instantly share code, notes, and snippets.

@jamesgolick
Created January 4, 2010 21:24
Show Gist options
  • Select an option

  • Save jamesgolick/268876 to your computer and use it in GitHub Desktop.

Select an option

Save jamesgolick/268876 to your computer and use it in GitHub Desktop.
>> h = Hash.new { |hash, k| h[k] = [] }
=> {}
>> h = Hash.new(1)
=> {}
>> h[1]
=> 1
>> h
=> {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment