퀴즈
다음 코드를 실행하면 어떤 일이 벌어지는가? ch := make(chan int) select { case v := <-ch: fmt.Println(v) default: fmt.Println("no value") }