1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00
This commit is contained in:
Kleber Correia 2018-12-11 17:51:22 +00:00 committed by GitHub
commit f1721a9e9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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