golang.org/toolchain@v0.0.1-go1.9rc2.windows-amd64/blog/content/constants/float5.go (about) 1 // +build OMIT 2 3 package main 4 5 import ( 6 "fmt" 7 "math" 8 ) 9 10 func main() { 11 // START OMIT 12 pi := math.Pi 13 fmt.Println(pi) 14 // STOP OMIT 15 }