Source file src/go/doc/testdata/examples/major_version.go

     1  package foo_test
     2  
     3  import (
     4  	"example.com/foo/v3"
     5  	"example.com/go-bar"
     6  )
     7  
     8  func Example() {
     9  	foo.Print("hello")
    10  	bar.Print("world")
    11  	// Output:
    12  	// hello
    13  	// world
    14  }
    15  

View as plain text