14 lines
169 B
Go
14 lines
169 B
Go
package main
|
|
|
|
import (
|
|
"github.com/goplus/llgo/internal/runtime/c"
|
|
)
|
|
|
|
func hello() string {
|
|
return "Hello world\n"
|
|
}
|
|
|
|
func main() {
|
|
c.Printf(c.AllocaCStr(hello()))
|
|
}
|