Skip to content

Instantly share code, notes, and snippets.

@takkanm
Created April 11, 2014 07:41
Show Gist options
  • Save takkanm/10447368 to your computer and use it in GitHub Desktop.
Save takkanm/10447368 to your computer and use it in GitHub Desktop.
irb(main):001:0> a = []
=> []
irb(main):002:0> h = a.hash
=> 4042432731835813366
irb(main):003:0> a.push 1
=> [1]
irb(main):004:0> h == a.hash
=> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment