implode

implode

[code=golang]
func Implode(glue string, pieces []string) string {
	return strings.Join(pieces, glue)
}
[/code]