13 lines
140 B
Go
13 lines
140 B
Go
package main
|
|
|
|
/*
|
|
char* foo(void) { return "hello, world!"; }
|
|
*/
|
|
import "C"
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Println(C.GoString(C.foo()))
|
|
}
|