diff --git a/_demo/hello/hello.go b/_demo/hello/hello.go index 5d2cdd76..7049cd2b 100644 --- a/_demo/hello/hello.go +++ b/_demo/hello/hello.go @@ -1,11 +1,15 @@ package main import ( + "fmt" + "github.com/goplus/llgo/c" ) func main() { - c.Printf(c.Str("Hello world\n")) + println("hello world by println") + fmt.Println("hello world by fmt.Println") + c.Printf(c.Str("Hello world by c.Printf\n")) } /* Expected output: