gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/select11.go (about) 1 package main 2 3 func main() { 4 c := make(chan string) 5 select { 6 case <-c: 7 println("unexpected") 8 default: 9 println("nothing received") 10 } 11 println("bye") 12 } 13 14 // Output: 15 // nothing received 16 // bye