github.com/goplus/llgo@v0.8.3/cl/_testdata/importpkg/in.go (about)

     1  package main
     2  
     3  import "github.com/goplus/llgo/cl/internal/stdio"
     4  
     5  var hello = [...]int8{'H', 'e', 'l', 'l', 'o', '\n', 0}
     6  
     7  func main() {
     8  	_ = stdio.Max(2, 100)
     9  	stdio.Printf(&hello[0])
    10  }