aboutsummaryrefslogtreecommitdiff
path: root/tests/core/go_binary/static_cgo_bin.go
blob: 65676fd97bc6dd2b152169e101d16579d7e9c6f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package main

/*
#include <stdio.h>

void say_hello() {
	printf("hello\n");
}
*/
import "C"

func main() {
	C.say_hello()
}