1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 13:38:38 +01:00

Array initialization disambiguation - fixes #257

simply added proposed comment, which seems fine
This commit is contained in:
Jean-Christophe Bohin 2014-08-04 22:38:53 +02:00
parent a0af5e9a7b
commit 0078b03707

View File

@ -92,7 +92,8 @@ can include line breaks.` // Same string type.
// Arrays have size fixed at compile time.
var a4 [4]int // An array of 4 ints, initialized to all 0.
a3 := [...]int{3, 1, 5} // An array of 3 ints, initialized as shown.
a3 := [...]int{3, 1, 5} // An array initialzed with a fixed size of three
//elements, with values 3,1, and 5
// Slices have dynamic size. Arrays and slices each have advantages
// but use cases for slices are much more common.