A list of characters.
datatype string
implement string skip(nonnegative count) pure
implement string slice(nonnegative begin, nonnegative end) pure
subtypes stringable
subtypes deeply immutable data
subtypes equality comparable
Skips over the specified count of elements and returns an immutable slice
that begins with count and ends with the end of this list.
Returns an immutable sublist with the given the starting and ending indices.
The starting index is inclusive, the ending is exclusive.