github.com/yukk001/go1.10.8@v0.0.0-20190813125351-6df2d3982e20/src/cmd/objdump/testdata/fmthello.go (about)

     1  package main
     2  
     3  import "fmt"
     4  
     5  func main() {
     6  	Println("hello, world")
     7  }
     8  
     9  //go:noinline
    10  func Println(s string) {
    11  	fmt.Println(s)
    12  }