1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples/news_fetcher: don't print the ids

This commit is contained in:
Alexander Medvednikov 2019-07-24 00:56:42 +02:00
parent 4f11185231
commit facf55cbc0

View File

@ -57,7 +57,6 @@ fn main() {
for i := 0; i < NR_THREADS; i++ {
go fetcher.fetch()
}
println(fetcher.ids)
time.sleep(5)
}