1
hermetic_cc_toolchain/test/hello.go
Motiejus Jakštys 19c7d77ac0 [test] remove DataDog/zstd
only one test cgo dependency is quite enough
2021-11-07 12:39:34 +02:00

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()
}