mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-26 14:56:02 +03:00
13 lines
135 B
Go
13 lines
135 B
Go
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func main() {
|
||
|
done := make(chan int)
|
||
|
go func() {
|
||
|
fmt.Println("Hello World")
|
||
|
<-done
|
||
|
}()
|
||
|
done <- 1
|
||
|
}
|