mirror of
https://github.com/lloeki/normandy.git
synced 2025-12-06 01:54:40 +01:00
7 lines
72 B
Go
7 lines
72 B
Go
package main
|
|
|
|
func main() {
|
|
c := make(chan string, 1)
|
|
c<-"foo"
|
|
<-c
|
|
}
|