Files
llgo/_demo/hello/hello.go
2024-07-13 17:51:06 +08:00

14 lines
140 B
Go

package main
import (
"github.com/goplus/llgo/c"
)
func main() {
c.Printf(c.Str("Hello world\n"))
}
/* Expected output:
Hello world
*/