Skip to content

Instantly share code, notes, and snippets.

@lucasrpb
Last active November 24, 2016 00:58
Show Gist options
  • Save lucasrpb/e5a987e33b2801fbe071c17e4cf210e9 to your computer and use it in GitHub Desktop.
Save lucasrpb/e5a987e33b2801fbe071c17e4cf210e9 to your computer and use it in GitHub Desktop.
c, _ := sender.Send("Hi from Server!")
//fmt.Println(c)
select {
case data := <-c: {
fmt.Println(data)
//return
c1 , _ := sender.Send("blah!")
select {
case data := <-c1: {
fmt.Println(data)
}
}
return
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment