1 package block_contest 2 3 func ReadTheChannel(c chan bool) { 4 <-c 5 } 6 7 func SlowReadTheChannel(c chan bool) { 8 <-c 9 } 10
View as plain text