gobuch/concurrency/channels/main.go

18 lines
141 B
Go
Raw Permalink Normal View History

2020-08-21 04:26:40 +00:00
package main
import "fmt"
func main() {
c := make(chan string)
go func() {
fmt.Println(<-c)
}()
c <- "Hello World!"
close(c)
}