Text file src/go/doc/testdata/examples/major_version.golden

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

View as plain text