github.com/goplus/llgo@v0.8.3/_pydemo/pi/pi.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/goplus/llgo/c"
     5  	"github.com/goplus/llgo/py/math"
     6  )
     7  
     8  func main() {
     9  	c.Printf(c.Str("pi = %f\n"), math.Pi.Float64())
    10  }