Allows to reference a contiguous sequence of elements in a collection without having to use the entire collection
Similar to references slices, do not take ownership of the underlying data
String Literals are string slices (They slice to the location in the binary containing the string)
Slices work by storing a reference to the first element of the collection and a length
String are also a type of String Slice
A similar syntax can be used to slice other compound objects also