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

     1  // +build OMIT
     2  
     3  package main
     4  
     5  import "fmt"
     6  
     7  func main() {
     8  	const Two = 2.0 + 0i
     9  	// START OMIT
    10  	s := Two
    11  	fmt.Printf("%T: %v\n", s, s)
    12  	// STOP OMIT
    13  }