Files
llgo/compiler/cl/_testrt/allocstr/in.go

14 lines
152 B
Go
Raw Normal View History

2024-04-30 18:22:56 +08:00
package main
import (
"github.com/goplus/llgo/c"
2024-04-30 18:22:56 +08:00
)
func hello() string {
return "Hello world\n"
}
func main() {
c.Printf(c.AllocaCStr(hello()))
}