...
Run Format

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

Documentation: go/doc/testdata/examples

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

View as plain text