mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2025-11-04 19:51:36 +00:00
Update ch2-06-2.md
var pc [256]byte = func() (pc [256]byte) {
for i := range pc {
pc[i] = pc[i/2] + byte(i&1)
}
return
}()
Update ch2-06-2.md
var pc [256]byte = func() (pc [256]byte) {
for i := range pc {
pc[i] = pc[i/2] + byte(i&1)
}
return
}()