func ExampleHello() { t.Log("CGO:") C.sayHello() // Output: CGO: // Hello // }
func main() { fmt.Printf("Hello Go!\n") C.sayHello() }