join a list in go
import ( "fmt" "strings" ) func main() { s := []string{"1", "2", "3"} fmt.Println(strings.Join(s, ",")) }