Skip to content

Instantly share code, notes, and snippets.

@ik5
Last active October 12, 2016 13:03
Show Gist options
  • Save ik5/3e54a93b6000ea7b7c1d1fbb65933eaa to your computer and use it in GitHub Desktop.
Save ik5/3e54a93b6000ea7b7c1d1fbb65933eaa to your computer and use it in GitHub Desktop.
Creating
package main
/*
go build -buildmode=c-shared -o libgolibrary.so libgolibrary.go
go tool cgo
*/
import "C"
import "fmt"
//export func2
func func2() {
fmt.Println("func2")
}
//export func3
func func3() {
fmt.Println("func3")
}
func main() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment