How does one specify the maximum value representable for an unsigned integer type?
unsigned
I would like to know how to initialize min in the loop below
min
From math lib: https://github.com/golang/go/blob/master/src/math/const.go#L39
package main import ( "fmt" "math" ) func main() { fmt.Printf("max int64: %d\n", math.MaxInt64) }