Sign in
go
/
go.git
/
refs/heads/master
/
.
/
src
/
go
/
doc
/
testdata
/
examples
/
major_version.go
blob: 6d91874a8913d51346b8c77bce0617d6f1652618 [
file
] [
log
] [
blame
] [
edit
]
package foo_test
import (
"example.com/foo/v3"
"example.com/go-bar"
)
func Example() {
foo.Print("hello")
bar.Print("world")
// Output:
// hello
// world
}