No. To slice an array, it's really simple:
| a: [12]int;
s: []int;
// These too are equivalent
s = a[:];
s = a[0:a.count-1];
|
I should note, I may change the syntax eventually from the colon `:`, to use the same as the for loops: `...` and `..<`.
This minor syntax difference isn't that important to worry about yet.