Skip to content

Instantly share code, notes, and snippets.

@blooberr
Last active October 18, 2016 03:47
Show Gist options
  • Save blooberr/aeca8fd704ad794bf4ce66038530f230 to your computer and use it in GitHub Desktop.
Save blooberr/aeca8fd704ad794bf4ce66038530f230 to your computer and use it in GitHub Desktop.
a = [5, 3, 2]
b = a
# should see [5,3,2]
puts b.inspect
a[0] = 7
# should see [7,3,2]
puts b.inspect
# reset
a = [5,3,2]
b = a.dup
a[0] = 7
# should see [5,3,2]
puts b.inspect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment