Created
April 4, 2015 19:22
-
-
Save redsquirrel/9778a9523317261349af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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