Files
llgo/cl/_testrt/allocstr/in.go
2025-04-03 16:26:11 +08:00

14 lines
151 B
Go

package main
import (
"github.com/goplus/lib/c"
)
func hello() string {
return "Hello world\n"
}
func main() {
c.Printf(c.AllocaCStr(hello()))
}