Files
llgo/_pydemo/hellopy/hello.go

14 lines
212 B
Go
Raw Normal View History

2024-05-11 04:26:41 +08:00
package main
import (
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/py"
)
func main() {
py.Initialize()
py.SetProgramName(*c.Argv)
py.RunSimpleString(c.Str(`print('Hello, World!')`))
py.Finalize()
}