Sign in
go
/
website
/
9817d4fb13305c1bd5e5a0f41e8fe3f582406a39
/
.
/
_content
/
blog
/
constants
/
exercise6.go
blob: ce6478c7b1a06c30f2df8916f0659bb1ce71f087 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
func main() {
// START OMIT
const MaxUint = ^uint(0)
fmt.Printf("%x\n", MaxUint)
// STOP OMIT
}