tweak
This commit is contained in:
parent
e70a6d4178
commit
9f93295a9f
@ -11,11 +11,9 @@ func main() {
|
|||||||
// elements they contain (not the number of elements).
|
// elements they contain (not the number of elements).
|
||||||
// To create an empty slice with non-zero length, use
|
// To create an empty slice with non-zero length, use
|
||||||
// the builtin `make`. Here we make a slice of `int`s
|
// the builtin `make`. Here we make a slice of `int`s
|
||||||
// of length `5`.
|
// of length `5` (initially empty-valued).
|
||||||
s := make([]int, 5)
|
s := make([]int, 5)
|
||||||
|
mt.Println("emp:", s)
|
||||||
// New slices are initially empty-valued.
|
|
||||||
fmt.Println("emp:", s)
|
|
||||||
|
|
||||||
// We can set and get just like with arrays.
|
// We can set and get just like with arrays.
|
||||||
s[4] = 100
|
s[4] = 100
|
||||||
|
Loading…
x
Reference in New Issue
Block a user