1package dylib 2 3/* 4extern int foo(); 5*/ 6import "C" 7 8func Foo() int { 9 return int(C.foo()) 10} 11