📌  相关文章
📜  pi 的 go 值 - Go 编程语言代码示例

📅  最后修改于: 2022-03-11 14:44:59.972000             🧑  作者: Mango

代码示例1
import "math"

// define as literal
const Pi  = 3.14159265358979323846264338327950288419716939937510582097494459

// or use library
func main() {
    pi := math.Pi
}