mirror of
https://github.com/goplus/llgo.git
synced 2025-09-27 03:56:05 +08:00
11 lines
151 B
Go
11 lines
151 B
Go
package main
|
|
|
|
import (
|
|
"github.com/goplus/lib/c"
|
|
"github.com/goplus/lib/py/math"
|
|
)
|
|
|
|
func main() {
|
|
c.Printf(c.Str("pi = %f\n"), math.Pi.Float64())
|
|
}
|