This is an infinite loop:
for b := byte(0); b <= 255; b++ {
_ = url.QueryEscape(string([]byte{a,b}))
}b will always be <= 255 because it is a byte. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/87FBE123-74DB-4C6A-B662-D9944D888B0F%40ix.netcom.com.
