mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Minor language change fixing mixed use of array and slice, where only slice is correct.
This commit is contained in:
parent
7000db24e0
commit
161e19baa9
@ -110,9 +110,9 @@ can include line breaks.` // Same string type.
|
|||||||
fmt.Println(s) // Updated slice is now [1 2 3 4 5 6]
|
fmt.Println(s) // Updated slice is now [1 2 3 4 5 6]
|
||||||
// To append another slice, instead of list of atomic elements we can
|
// To append another slice, instead of list of atomic elements we can
|
||||||
// pass a reference to a slice or a slice literal like this, with a
|
// pass a reference to a slice or a slice literal like this, with a
|
||||||
// trailing elipsis, meaning take an array and unpack its elements,
|
// trailing elipsis, meaning take a slice and unpack its elements,
|
||||||
// appending them to the slice.
|
// appending them to slice s.
|
||||||
s = append(s, []int{7, 8, 9}...) // Second argument is an array literal.
|
s = append(s, []int{7, 8, 9}...) // Second argument is a slice literal.
|
||||||
fmt.Println(s) // Updated slice is now [1 2 3 4 5 6 7 8 9]
|
fmt.Println(s) // Updated slice is now [1 2 3 4 5 6 7 8 9]
|
||||||
|
|
||||||
p, q := learnMemory() // Declares p, q to be type pointer to int.
|
p, q := learnMemory() // Declares p, q to be type pointer to int.
|
||||||
|
Loading…
Reference in New Issue
Block a user