19c7d77ac0
only one test cgo dependency is quite enough
14 lines
176 B
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()
|
|
}
|