package C /* #include "hello.h" */ import "C" import "fmt" func SayHelloV1() { C.sayHello() } func GoSum(a, b int) { s := C.sum(C.int(a), C.int(b)) fmt.Println(s) }