Files
llgo/_pydemo/print/print.go

12 lines
137 B
Go
Raw Normal View History

package main
import (
2025-04-03 15:52:18 +08:00
"github.com/goplus/lib/py"
"github.com/goplus/lib/py/std"
)
func main() {
x := py.Float(3.14)
std.Print(x)
}