Actually, you may want to do it anywhere you're doing excessive
concatenation, even when it's multiple characters -- you can use a
[]string, and run strings.Join at the end:
http://golang.org/pkg/strings/#Join. Join creates a slice of bytes of
the final size, writes all the strings from the []string to it, and
returns the byte slice cast to a string.