11 lines
88 B
Go
11 lines
88 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"math"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(math.Pi)
|
|
}
|