github.com/eun/go@v0.0.0-20170811110501-92cfd07a6cfd/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 }