Junior — Senior
What will be the output of program №58
livecode
Task condition
What is the output of the program when it runs?
import "fmt"
func main() {
slice1 := make([]string, 10)
slice2 := make([]string, 0, 10)
fmt.Println(slice1, slice2)
}