a = "Ruby" # One reference to one String objectb = c = "Ruby" # Two references to another String objecta.equal?(b) # false: a and b are different objectsb.equal?(c) # true: b and c refer to the same object