Skip to content

Instantly share code, notes, and snippets.

@mahmoudimus
Created July 1, 2014 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mahmoudimus/949629bc732e4ba3d6b0 to your computer and use it in GitHub Desktop.
Save mahmoudimus/949629bc732e4ba3d6b0 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