kiln
01 / 04
Arrays · foundations

A slice is a view.

It does not copy the array. It points at a window inside the same memory.

nums:= []int{2, 5, 8, 13}
2
5
8
13