aboutsummaryrefslogtreecommitdiff
path: root/tests/legacy/examples/cgo/export_example.go
blob: 874340c79796eb68e7775f10fabd72058affed28 (plain)
1
2
3
4
5
6
7
8
9
10
11
package cgo

import (
	"C"
	"runtime"
)

//export goVersion
func goVersion() string {
	return runtime.Version()
}