snippets
filter:96 snippets
go-gen-worker·go·general
func worker(jobs <-chan int, results chan<- int) {
for j := range jobs {
results <- j * 2
}
}
go-gen-worker·go·general
func worker(jobs <-chan int, results chan<- int) {
for j := range jobs {
results <- j * 2
}
}