13 lines
159 B
Go
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()
|
|
}
|