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

     1  // +build OMIT
     2  
     3  package main
     4  
     5  import "fmt"
     6  
     7  func main() {
     8  	// START OMIT
     9  	const MaxUint = ^uint(0)
    10  	fmt.Printf("%x\n", MaxUint)
    11  	// STOP OMIT
    12  }