PHP » GoLang |
login |
register |
about
|
implodeimplode[code=golang] func Implode(glue string, pieces []string) string { return strings.Join(pieces, glue) } [/code] |