Reflection Ruby

# You can find out what this ID is with the object_id method from Object.
myString = "asdf"
whitman = myString # copy one string object to another
whitman == myString # => true
myString.object_id # => 968680
whitman.object_id # => 968680