github.com/goplus/llgo@v0.8.3/cl/_testrt/allocstr/in.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/goplus/llgo/internal/runtime/c"
     5  )
     6  
     7  func hello() string {
     8  	return "Hello world\n"
     9  }
    10  
    11  func main() {
    12  	c.Printf(c.AllocaCStr(hello()))
    13  }