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

     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!
    12  

View as plain text