Skip to content

Instantly share code, notes, and snippets.

@SrdjanCoric
Created September 24, 2017 20:36
Show Gist options
  • Save SrdjanCoric/c1f2cb0fc79d25fc78f8219a0db9e488 to your computer and use it in GitHub Desktop.
Save SrdjanCoric/c1f2cb0fc79d25fc78f8219a0db9e488 to your computer and use it in GitHub Desktop.
a = 'hello'
puts a # -> hello
puts a.object_id # -> 70368468160540 (this number will be different for you)
a.upcase
puts a # -> hello
puts a.object_id # -> 70368468160540 (this number will be the same as the one above)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment