Skip to content

Instantly share code, notes, and snippets.

@denisdefreyne
Created June 18, 2011 18:50
Show Gist options
  • Save denisdefreyne/1033394 to your computer and use it in GitHub Desktop.
Save denisdefreyne/1033394 to your computer and use it in GitHub Desktop.
array = [ 1, 2, 3 ]
array.hash
# => -239251530248082591
dict = {}
dict[array] = 123
array << 4
array.hash
# => -3202532316789943903
dict[array]
# => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment