cl: funcOf; use gogen/packages.Importer

This commit is contained in:
xushiwei
2024-04-22 17:49:21 +08:00
parent 5343a55395
commit 2d75c55d36
7 changed files with 40 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
package main
import "github.com/goplus/llgo/cl/internal/stdio"
var hello = [...]int8{'H', 'e', 'l', 'l', 'o', '\n', 0}
func main() {
stdio.Printf(&hello[0])
}