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:
parent
82fc76d6ab
commit
f84fbfcaad
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue