Files

13 lines
245 B
Go
Raw Permalink Normal View History

2024-05-11 06:23:05 +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-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
}