larger sample numbers

This commit is contained in:
Stephen McQuay 2018-05-04 22:00:09 -07:00
parent 80f5976c48
commit 39d849b955
Signed by: sm
GPG Key ID: C383C74875475AC8
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import (
)
func main() {
for i := range merge(source(5), source(10), source(20)) {
for i := range merge(source(500), source(100), source(200)) {
fmt.Printf("%20d\n", i)
}
}