Files
llgo/_demo/hello/hello.go
2025-02-14 19:02:35 +08:00

18 lines
238 B
Go

package main
import (
"fmt"
"github.com/goplus/llgo/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"))
}
/* Expected output:
Hello world
*/