cl: _testdata/importpkg

This commit is contained in:
xushiwei
2024-04-22 20:09:23 +08:00
parent 2d75c55d36
commit 72084b5648
8 changed files with 212 additions and 79 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])
}