mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-04-03 13:13:34 +03:00
Merge ca153acaa8
into f978e42036
This commit is contained in:
commit
f1721a9e9c
1 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
[Generators](https://en.wikipedia.org/wiki/Generator_(computer_programming)) yields a sequence of values one at a time.
|
||||
|
||||
## Implementation
|
||||
## Implementation
|
||||
|
||||
```go
|
||||
func Count(start int, end int) chan int {
|
||||
|
@ -14,7 +14,7 @@ func Count(start int, end int) chan int {
|
|||
ch <- i
|
||||
}
|
||||
|
||||
close(ch)
|
||||
close(ch)
|
||||
}(ch)
|
||||
|
||||
return ch
|
||||
|
|
Loading…
Add table
Reference in a new issue