String Ruby

class String 
  def unshift_word(other)
    newself = other.to_s + self
    self.replace(newself)
  end
end
a = "this is a test"
puts a.unshift_word "another"