github.com/0xKiwi/rules_go@v0.24.3/tests/core/go_binary/static_cgo_bin.go (about) 1 package main 2 3 /* 4 #include <stdio.h> 5 6 void say_hello() { 7 printf("hello\n"); 8 } 9 */ 10 import "C" 11 12 func main() { 13 C.say_hello() 14 }