2022-08-21:以下go语言代码输出什么?A:0;B:panic;C:不知道。package mainvar n = -99func main() { m := make(map[string]int, n) println(m["Go"])}