Junior — Senior
What output will the console display when running program №53
livecode
Task condition
Determine what text will appear in the console after running the following code fragment:
ch := make(chan int, 1)
ch <- 10
close(ch)
val, e = <-ch
_,_ = val, e