1package main 2 3// #define CGO_EXPORT_H_EXISTS 4import "C" 5 6//export GoAdd 7func GoAdd(a, b int) int { 8 return a + b 9} 10 11func main() {} 12