Introduction

Arrays are fixed-length enumerated lists that store a certain type of data.


// Fixed-width array 3 that stores data of type int
var myArray[3]int
                        
introduction.go