点击运行
package main import ( "fmt" ) func main() { var a [3]int //长度为3的整数数组 fmt.Println(a) }
运行结果 :
正在执行...