Skip to content

Instantly share code, notes, and snippets.

@dbarrionuevo
Created October 29, 2014 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbarrionuevo/fed2ff90e7b055eb1300 to your computer and use it in GitHub Desktop.
Save dbarrionuevo/fed2ff90e7b055eb1300 to your computer and use it in GitHub Desktop.
xx = [1,2,3]
=> [1, 2, 3]
yy = xx
=> [1, 2, 3]
yy.delete 2
=> 2
yy
=> [1, 3]
xx
=> [1, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment