pygomx/libmxclient/mxclientlib.go

13 lines
177 B
Go
Raw Normal View History

2026-01-09 18:52:31 +01:00
package main
import "C"
//export hello
func hello(name *C.char) *C.char {
goName := C.GoString(name)
result := "Hello " + goName
return C.CString(result)
}
func main() {}