Sign in
go
/
pkgsite-metrics
/
003ad50eeb347d485edc537ddc1cb052d90a6464
/
.
/
internal
/
testdata
/
multipleBinModule
/
p1
/
main.go
blob: 4b0c0e7e08688126cadb6bae1705eeffcea6e4ac [
file
]
package main
import (
"fmt"
"strings"
)
// This package doesn't use any of the code in M, but instead
// is used to build something or as a helper
func main() {
s := strings.Join([]string{"One", "Two"}, " ")
fmt.Println(s)
}