37953e9cd3
this stresses the toolchain more.
15 lines
205 B
Go
15 lines
205 B
Go
package main
|
|
|
|
import (
|
|
_ "github.com/DataDog/zstd"
|
|
_ "github.com/mattn/go-sqlite3"
|
|
)
|
|
|
|
// #include <stdio.h>
|
|
// void helloworld() { printf("hello, world\n"); }
|
|
import "C"
|
|
|
|
func main() {
|
|
C.helloworld()
|
|
}
|