golang.org/toolchain@v0.0.1-go1.9rc2.windows-amd64/blog/content/constants/float3.go (about)

     1  // +build OMIT
     2  
     3  package main
     4  
     5  import "fmt"
     6  
     7  func main() {
     8  	const Huge = 1e1000
     9  	// START OMIT
    10  	fmt.Println(Huge)
    11  	// STOP OMIT
    12  }