Files
llgo/_demo/hello/hello.go
2025-04-26 22:55:46 +08:00

14 lines
201 B
Go

package main
import (
"fmt"
"github.com/goplus/lib/c"
)
func main() {
println("hello world by println")
fmt.Println("hello world by fmt.Println")
c.Printf(c.Str("Hello world by c.Printf\n"))
}