mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-04-04 05:33:33 +03:00
parent
0ca6f6652d
commit
399a51c7fe
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ func Count(start int, end int) chan int {
|
|||
ch := make(chan int)
|
||||
|
||||
go func(ch chan int) {
|
||||
for i := start; i < end ; i++ {
|
||||
for i := start; i <= end ; i++ {
|
||||
// Blocks on the operation
|
||||
ch <- i
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue