concurrent goroutines

This commit is contained in:
2021-09-13 18:48:44 +00:00
parent 5160e2ae78
commit 742bbc6e1e
7 changed files with 149 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package main
import (
"fmt"
"time"
)
func worker(done chan bool) {
fmt.Print("working...")
time.Sleep(time.Second)
fmt.Println("done")
done <- true
}
func main() {
done := make(chan bool, 1)
go worker(done)
<-done
}