Slice defaults
When slicing, you can omit either bound and Go fills in the default: 0 for the low end, and the slice’s length for the high end.
So for a 10-element array, all four of these mean the same thing:
a[0:10]
a[:10]
a[0:]
a[:]
Try it: Rewrite the slice operations in the example using different combinations of defaults.