Files
llgo/compiler/cl/_testpy/pow/in.go
2025-01-08 14:59:01 +08:00

13 lines
224 B
Go

package main
import (
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/py"
"github.com/goplus/llgo/py/math"
)
func main() {
x := math.Pow(py.Float(2), py.Float(3))
c.Printf(c.Str("pow(2, 3) = %f\n"), x.Float64())
}