Skip to content

Instantly share code, notes, and snippets.

@mlomnicki
Created September 27, 2010 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mlomnicki/599101 to your computer and use it in GitHub Desktop.
Save mlomnicki/599101 to your computer and use it in GitHub Desktop.
# << operator
original = "foo"
copy = original
copy << "bar"
copy # => "foobar"
original # => "foobar"
# += operator
original = "foo"
copy = original
copy += "bar"
copy # foobar
original # foo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment