Unlike arrays, slices are typed only by the elements they contain (not the number of elements). They are lists of elements of the same type that can be resizable.
Initialization of an empty slice:
a := []int{}