mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 04:46:22 +08:00
9 lines
144 B
Go
9 lines
144 B
Go
package main
|
|
import (
|
|
"fmt"
|
|
"./trans"
|
|
)
|
|
var twoPi = 2 * trans.Pi
|
|
func main() {
|
|
fmt.Printf("2*Pi = %g\n", twoPi) // 2*Pi = 6.283185307179586
|
|
} |