mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-21 20:36:01 +03:00
24 lines
236 B
Go
24 lines
236 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/davecgh/go-spew/spew"
|
|
)
|
|
|
|
func main() {
|
|
a := make(chan string)
|
|
go func() {
|
|
time.Sleep(time.Second * 2)
|
|
test := "string"
|
|
a <- test
|
|
}()
|
|
|
|
select {
|
|
case t := <-a:
|
|
spew.Dump(t)
|
|
|
|
}
|
|
|
|
}
|