Skip to content

Instantly share code, notes, and snippets.

@murajun1978
Created May 1, 2014 09:07
Show Gist options
  • Save murajun1978/067438da9380d186ac13 to your computer and use it in GitHub Desktop.
Save murajun1978/067438da9380d186ac13 to your computer and use it in GitHub Desktop.
Rubyの配列 (Ruby Silver)
ary = Array.new(2, Hash.new)
ary =[0][:dog] = "pochi"
ary #=> ???
ary = Array.new(2){Hash.new}
ary[0][:dog] = "pochi"
ary #=> ???
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment