Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
25
Task/Concurrent-computing/Go/concurrent-computing-2.go
Normal file
25
Task/Concurrent-computing/Go/concurrent-computing-2.go
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"log"
|
||||
"math/rand"
|
||||
"os"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
||||
func main() {
|
||||
words := []string{"Enjoy", "Rosetta", "Code"}
|
||||
rand.Seed(time.Now().UnixNano())
|
||||
l := log.New(os.Stdout, "", 0)
|
||||
var q sync.WaitGroup
|
||||
q.Add(len(words))
|
||||
for _, w := range words {
|
||||
w := w
|
||||
time.AfterFunc(time.Duration(rand.Int63n(1e9)), func() {
|
||||
l.Println(w)
|
||||
q.Done()
|
||||
})
|
||||
}
|
||||
q.Wait()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue