Sign in
◑
Theme
go
/
blog
/
10cc6f575bc85cafbda92aa7030a8e5c6e486dfe
/
.
/
content
/
constants
/
exercise6.go
blob: ce6478c7b1a06c30f2df8916f0659bb1ce71f087 [
file
]
// +build OMIT
package main
import "fmt"
func main() {
// START OMIT
const MaxUint = ^uint(0)
fmt.Printf("%x\n", MaxUint)
// STOP OMIT
}