2022-06-30:以下golang代码输出什么?A:0;B:2;C:运行错误。package mainimport "fmt"func main() { ints := make([]int, 1) ints = append(ints, 2) fmt.Println(ints[0])}