github.com/zxy12/golang_with_comment@v0.0.0-20190701084843-0e6b2aff5ef3/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  }