Files
llgo/_demo/c/hello/hello.go

14 lines
201 B
Go
Raw Normal View History

2024-05-06 22:31:33 +08:00
package main
import (
"fmt"
2025-04-03 15:52:18 +08:00
"github.com/goplus/lib/c"
2024-05-06 22:31:33 +08:00
)
func main() {
println("hello world by println")
fmt.Println("hello world by fmt.Println")
c.Printf(c.Str("Hello world by c.Printf\n"))
2024-05-06 22:31:33 +08:00
}