a = "Ruby" # One reference to one String objectb = c = "Ruby" # Two references to another String objecta.equal?(b) # false: a and b are different objectsa.object_id == b.object_id # Works like a.equal?(b)