delve/_fixtures/cgotest.go

13 lines
140 B
Go
Raw Normal View History

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