1
Fork 0
hermetic_cc_toolchain/test/hello.go

14 lines
176 B
Go

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