package main // #cgo CFLAGS: -g // #include "test.c" import "C" import ( "fmt" ) func main() { fmt.Println("This is a 'Hello world!' from go-land!") C.hello_world() }