Skip to content

Instantly share code, notes, and snippets.

@omarqureshi
Created October 8, 2010 21:11
Show Gist options
  • Save omarqureshi/617555 to your computer and use it in GitHub Desktop.
Save omarqureshi/617555 to your computer and use it in GitHub Desktop.
>> class Test
>> end
=> nil
>> a = Test.new
=> #<Test:0x1013248d8>
>> b = a.clone
=> #<Test:0x1012f1fa0>
>> a.object_id
=> 2157519980
>> b.object_id
=> 2157416400
>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment