Files
llgo/doc/_readme/llgo_call_py/call_py.go

13 lines
245 B
Go
Raw Normal View History

2024-11-06 10:28:08 +08:00
package main
import (
2025-04-03 15:52:18 +08:00
"github.com/goplus/lib/py"
"github.com/goplus/lib/py/math"
"github.com/goplus/lib/py/std"
2024-11-06 10:28:08 +08:00
)
func main() {
x := math.Sqrt(py.Float(2)) // x = sqrt(2)
std.Print(py.Str("sqrt(2) ="), x) // print("sqrt(2) =", x)
}