Hello. Below is an example of the code, please suggest why the second gorutina writes to the channel faster: https://play.golang.org/p/olYKJ08L5C
c := make(chan string) go func(s string){ c <- s }("first") go func(s string){ c <- s }("second") fmt.Println(<-c, <-c)