Skip to content

Instantly share code, notes, and snippets.

Created April 8, 2014 02:55
Show Gist options
  • Save anonymous/10085537 to your computer and use it in GitHub Desktop.
Save anonymous/10085537 to your computer and use it in GitHub Desktop.
If I shift myArray the test array also gets shifted
myArray = [1,2,3,4]
test = Array.new
test = myArray
puts test
myArray.shift
puts test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment