a = "hello" b = a.dup class < def to_s "The value is '#{self}'" end def twoTimes self + self end end a.to_s a.twoTimesb.to_s