hello.go 171 B

12345678910111213141516
  1. package C
  2. /*
  3. #include "hello.h"
  4. */
  5. import "C"
  6. import "fmt"
  7. func SayHelloV1() {
  8. C.sayHello()
  9. }
  10. func GoSum(a, b int) {
  11. s := C.sum(C.int(a), C.int(b))
  12. fmt.Println(s)
  13. }