mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-11 22:00:03 +08:00
10 lines
116 B
Go
10 lines
116 B
Go
package trans
|
|
|
|
import "math"
|
|
|
|
var Pi float64
|
|
|
|
func init() {
|
|
Pi = 4 * math.Atan(1) // init() function computes Pi
|
|
}
|