Files
llgo/compiler/cl/_testpy/pi/in.go

11 lines
153 B
Go
Raw Normal View History

package main
import (
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/py/math"
)
func main() {
2024-05-15 18:32:50 +08:00
c.Printf(c.Str("pi = %f\n"), math.Pi.Float64())
}