a = "Ruby" # One String objectb = "Ruby" # A different String object with the same contenta.equal?(b) # false: a and b do not refer to the same objecta == b # true: but these two distinct objects have equal values