1
hermetic_cc_toolchain/test/hello.go
Motiejus Jakštys 3d8cc9c38c add unit test
2022-01-28 15:49:24 +02:00

19 lines
275 B
Go

package main
import (
_ "github.com/mattn/go-sqlite3"
)
// #include <stdio.h>
// char* hello() { return "hello, world"; }
// void printhello() { printf("%s\n", hello()); }
import "C"
func main() {
C.printhello()
}
func chello() string {
return C.GoString(C.hello())
}