Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bolilla/567557b6bc7a8a92b506 to your computer and use it in GitHub Desktop.
Save bolilla/567557b6bc7a8a92b506 to your computer and use it in GitHub Desktop.
GoPadawan Concurrencia Select Default
package main
import "fmt"
func main() {
c := make(chan bool)
select {
case d := <-c:
fmt.Println("He leído", d)
default:
fmt.Println("Aquí nadie dice nada")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment