Junior — Senior
What text will the program output in Go (example 59)
livecode
Task condition
Determine what output will appear in the console after running the following Go program.
import "fmt"
func main() {
a:=make([]int, 10)
b:=make([]int, 0, 10)
fmt.Println(a,b)
}