shared/main.go

package main

import "C"

//export Plus
func Plus(a, b int) int {
	return a + b
}

func main() {}