blob: 65676fd97bc6dd2b152169e101d16579d7e9c6f7 [file] [log] [blame]
package main
/*
#include <stdio.h>
void say_hello() {
printf("hello\n");
}
*/
import "C"
func main() {
C.say_hello()
}