Working with arrays
This lesson explains arrays, multidimensional arrays and how to print them in GO
We'll cover the following...
Arrays
The type [n]T is an array of n values of type T.
The expression:
Press + to interact
var a [10]int
declares a variable a as an array of ten integers.
An array’s length is part of its type, so arrays cannot be resized. This seems limiting, but don’t worry; Go provides a convenient way of working ...
Ask