I\'m looking for a better way to merge variables into a string, in Ruby.
For example if the string is something like:
\"The animal action<
animal
action<
["The", animal, action, "the", second_animal].join(" ")
is another way to do it.