mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 04:48:29 +08:00
18 lines
285 B
Go
18 lines
285 B
Go
package trans
|
|
<<<<<<< HEAD
|
|
|
|
import "math"
|
|
|
|
var Pi float64
|
|
|
|
func init() {
|
|
Pi = 4 * math.Atan(1) // init() function computes Pi
|
|
}
|
|
=======
|
|
import "math"
|
|
var Pi float64
|
|
func init() {
|
|
Pi = 4 * math.Atan(1) // init() function computes Pi
|
|
}
|
|
>>>>>>> 0364d180eb1d1b8067d1248ace49ca46c816e541
|