Skip to content

Instantly share code, notes, and snippets.

@pohzipohzi
pohzipohzi / join_test.go
Created December 14, 2018 08:02 — forked from dtjm/join_test.go
strings.Join vs fmt.Sprintf vs string concat (+)
package join
import (
"fmt"
"strings"
"testing"
)
var (
testData = []string{"a", "b", "c", "d", "e"}