Skip to content

Instantly share code, notes, and snippets.

@SamGerber-zz
Last active December 9, 2015 06:57
Show Gist options
  • Save SamGerber-zz/a1c9813d2e964e660b0e to your computer and use it in GitHub Desktop.
Save SamGerber-zz/a1c9813d2e964e660b0e to your computer and use it in GitHub Desktop.
Does manipulating a string change its value?
@answer = "42" # => "42"
@answer.object_id # => 70033493776200
@answer.clear # => ""
@answer # => ""
@answer.object_id # => 70033493776200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment