_fixtures/loopprog: print less often (#2738)

Co-authored-by: Polina Sokolova <polinasok@users.noreply.github.com>
This commit is contained in:
polinasok 2021-10-13 00:10:55 -07:00 committed by GitHub
parent d613f8ec45
commit 7899e94ff2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -6,7 +6,7 @@ func loop() {
i := 0 i := 0
for { for {
i++ i++
if (i % 100000) == 0 { if (i % 1000000) == 0 {
fmt.Println(i) fmt.Println(i)
} }
} }