So I'm trying to test a function against every possible byte, that is 0 to 255 possibilities. How do I iterate over all possible bytes? i've
I've tried
for i := 0; i < 256; i++ {
fmt.Println(byte(i)) // prints a number 0-255
fmt.Println(byte{i}) // crashes
}