Aller Anfang ist schwer.

This commit is contained in:
saces 2026-01-09 18:52:31 +01:00
commit 16f964f41d
5 changed files with 74 additions and 0 deletions

3
libmxclient/go.mod Normal file
View file

@ -0,0 +1,3 @@
module mxclientlib
go 1.23.5

View file

@ -0,0 +1,12 @@
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() {}