Skip to content

Instantly share code, notes, and snippets.

@waseem
Created September 18, 2013 19:17
Show Gist options
  • Select an option

  • Save waseem/6614129 to your computer and use it in GitHub Desktop.

Select an option

Save waseem/6614129 to your computer and use it in GitHub Desktop.
$ irb
2.0.0p0 :001 > s1 = "some thing"
=> "some thing"
2.0.0p0 :002 > s2 = s1
=> "some thing"
2.0.0p0 :003 > s2
=> "some thing"
2.0.0p0 :004 > s1 = "some other thing"
=> "some other thing"
2.0.0p0 :005 > s2
=> "some thing"
2.0.0p0 :006 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment