py/README

This commit is contained in:
xushiwei
2024-05-11 05:18:17 +08:00
parent 31d91f5e87
commit 67896c63a7
5 changed files with 55 additions and 12 deletions

13
py/_demo/hellopy/hello.go Normal file
View File

@@ -0,0 +1,13 @@
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()
}