What does this program print?package main import "fmt" func main() { ch := make(chan int) go func() { ch <- 42 }() v := <-ch fmt.Println(v) }