From 4977f9f926b743a575a2d68920a41806c95d6a76 Mon Sep 17 00:00:00 2001
From: Rob Pike
-slice = array[2:4:6] +slice = array[2:4:7]
-sets the slice to have the same length as in the earlier example but its capacity is now only 4 elements (6-2). -It is impossible to use this new slice value to access the last two elements of the original array. +sets the slice to have the same length as in the earlier example but its capacity is now only 5 elements (7-2). +It is impossible to use this new slice value to access the last three elements of the original array.
-- 2.48.1