I am working through Ruby Koans. I am at the section in about_strings.rb which asks:
"Ruby programmers tend to favor the shovel operator (<<) over the plus equals operator (+=) when building up strings. Why?"
My guess is it involves speed, but I don't understand the action under the hood that would cause the shovel operator to be faster. Would someone be able to please explain the details behind this preference?