mirror of
https://github.com/goplus/llgo.git
synced 2025-09-27 03:56:05 +08:00
13 lines
245 B
Go
13 lines
245 B
Go
package main
|
|
|
|
import (
|
|
"github.com/goplus/lib/py"
|
|
"github.com/goplus/lib/py/math"
|
|
"github.com/goplus/lib/py/std"
|
|
)
|
|
|
|
func main() {
|
|
x := math.Sqrt(py.Float(2)) // x = sqrt(2)
|
|
std.Print(py.Str("sqrt(2) ="), x) // print("sqrt(2) =", x)
|
|
}
|