mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-29 00:25:20 +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
|
|
}
|