Files
ipc_and_ffi_example/ffi/main.go
T
2023-11-21 09:34:31 -08:00

13 lines
159 B
Go

package main
/*
#cgo LDFLAGS: -L./ -lexample
void helloFromC();
*/
import "C"
func main() {
print("Hello from Go! calling FFI for C\n")
C.helloFromC()
}