gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/select10.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 } 10 println("bye") 11 } 12 13 // Output: 14 // bye