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