gobuch/hello-channel/main.go

12 lines
161 B
Go
Raw Normal View History

2020-08-21 04:26:40 +00:00
package main
import "fmt"
func main() {
c := make(chan string)
//Wert in Channel schreiben
c <- "Hello World"
//Wert aus Channel lesen
fmt.Println(<-c)
}