github.com/lovishpuri/go-40569/src@v0.0.0-20230519171745-f8623e7c56cf/go/doc/testdata/examples/whole_function.golden (about)

     1  -- .Play --
     2  package main
     3  
     4  func Foo(x int) {
     5  }
     6  
     7  func main() {
     8  	fmt.Println("Hello, world!")
     9  }
    10  -- .Output --
    11  Hello, world!