mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2025-04-05 06:03:37 +03:00
added a simple channel demo
This commit is contained in:
parent
abeeb049c5
commit
59d7be9f82
1 changed files with 12 additions and 0 deletions
12
channel/basic/main.go
Normal file
12
channel/basic/main.go
Normal file
|
@ -0,0 +1,12 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
done := make(chan int)
|
||||
go func() {
|
||||
fmt.Println("Hello World")
|
||||
<-done
|
||||
}()
|
||||
done <- 1
|
||||
}
|
Loading…
Add table
Reference in a new issue