cl: link go name

This commit is contained in:
xushiwei
2024-05-02 23:14:12 +08:00
parent 5bd28a1e9e
commit 192b479f18
4 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package linktarget
import (
"github.com/goplus/llgo/internal/runtime/c"
)
func F(a, b *c.Char) {
c.Printf(c.Str("a: %s, b: %s\n"), a, b)
}