Skip to content

Instantly share code, notes, and snippets.

@redsquirrel
Created April 4, 2015 19:22
Show Gist options
  • Save redsquirrel/9778a9523317261349af to your computer and use it in GitHub Desktop.
Save redsquirrel/9778a9523317261349af to your computer and use it in GitHub Desktop.
redsquirrel:~ davehoover$ irb
2.0.0-p451 :001 > a = ['foo']
=> ["foo"]
2.0.0-p451 :002 > b = a
=> ["foo"]
2.0.0-p451 :003 > b += ['bar']
=> ["foo", "bar"]
2.0.0-p451 :004 > a
=> ["foo"]
2.0.0-p451 :005 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment