github.com/zebozhuang/go@v0.0.0-20200207033046-f8a98f6f5c5d/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 }