Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyGochannels send and receiveSingle-choice MCQ

What does this program print?

package main import "fmt" func main() { ch := make(chan int) go func() { ch <- 42 }() v := <-ch fmt.Println(v) }