2012-10-09 21:02:12 -07:00

11 lines
117 B
Go

package main
import "fmt"
func main() {
var x [5]int
x[4] = 100
fmt.Println(x)
fmt.Println(x[4])
}