24 lines
236 B
Go
Raw Permalink Normal View History

2018-01-07 02:04:06 +10:00
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)
}
}