Reflection Ruby

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