Files
llgo/_pydemo/callpy/callpy.go

13 lines
248 B
Go
Raw Normal View History

2024-05-11 06:23:05 +08:00
package main
import (
"github.com/goplus/llgo/py"
"github.com/goplus/llgo/py/math"
"github.com/goplus/llgo/py/std"
2024-05-11 06:23:05 +08:00
)
func main() {
x := math.Sqrt(py.Float(2)) // x = sqrt(2)
std.Print(py.Str("sqrt(2) ="), x) // print("sqrt(2) =", x)
2024-05-11 06:23:05 +08:00
}