Thu Aug 17
#
String#unshift
class String def unshift(string) self[0,0] = string self end end s = 'down the road' s.unshift 'Ease ' # => 'Ease down the road'