Files
llgo/_demo/hello/hello.go

14 lines
140 B
Go
Raw Normal View History

2024-05-06 22:31:33 +08:00
package main
import (
"github.com/goplus/llgo/c"
)
func main() {
c.Printf(c.Str("Hello world\n"))
}
/* Expected output:
Hello world
2024-05-06 22:31:33 +08:00
*/