func below(n uint64, to chan uint64) { for n--; n >= 0; n-- { to <- n } close(to) }
To receive a hint, submit unfixed code.