package main import ( _ "github.com/mattn/go-sqlite3" ) // #include // void helloworld() { printf("hello, world\n"); } import "C" func main() { C.helloworld() }