Skip to content

Instantly share code, notes, and snippets.

@eniolopes
Created July 6, 2011 19:47
Show Gist options
  • Save eniolopes/1068168 to your computer and use it in GitHub Desktop.
Save eniolopes/1068168 to your computer and use it in GitHub Desktop.
def teste(a)
p a.object_id
a = 20
p a.object_id
end
b = 10
teste b #=> 21\n41
p b.object_id #=> 21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment