1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00

Result is not defined

This commit is contained in:
Domenico Luciani 2016-10-02 21:29:50 +02:00
parent 82fc76d6ab
commit f84fbfcaad

View file

@ -11,7 +11,7 @@ func Count(start int, end int) chan int {
go func(ch chan int) {
for i := start; i < end ; i++ {
// Blocks on the operation
ch <- result
ch <- i
}
close(ch)