Skip to content

Instantly share code, notes, and snippets.

@elight
Created September 10, 2011 01:15
Show Gist options
  • Save elight/1207778 to your computer and use it in GitHub Desktop.
Save elight/1207778 to your computer and use it in GitHub Desktop.
ruby-1.9.2-p290 :001 > a = [1,2,3]
=> [1, 2, 3]
ruby-1.9.2-p290 :002 > b = a
=> [1, 2, 3]
ruby-1.9.2-p290 :003 > b.delete 1
=> 1
ruby-1.9.2-p290 :004 > b
=> [2, 3]
ruby-1.9.2-p290 :005 > a
=> [2, 3]
ruby-1.9.2-p290 :006 > a.object_id
=> 2155967080
ruby-1.9.2-p290 :007 > b.object_id
=> 2155967080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment