Arrays and collections / Arrays and slices

import (
    "fmt"
)

var count = 15
var arInt = make([]int, count)
arInt[0] = 1

fmt.Println(arInt)