class String def coerce(other) [other.to_s, self] end def +(other) "#{self}#{other}" endend
class String def coerce(other) [other.to_s, self] end def +(other) "#{self}#{other}" end end