Skip to content

Instantly share code, notes, and snippets.

@toashd
Created January 29, 2015 11:05
Show Gist options
  • Select an option

  • Save toashd/f558a0c94ef1eb3a0983 to your computer and use it in GitHub Desktop.

Select an option

Save toashd/f558a0c94ef1eb3a0983 to your computer and use it in GitHub Desktop.
import (
"fmt";
"strings";
)
func main() {
s := []string{"this", "is", "a", "joined", "string\n"};
fmt.Printf(strings.Join(s, " "));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment