[a] subarray([a] array, Int pos, Int n)
Arguments
array: The array to act onpos: The starting indexn: The number of elements to retrieve
Usage
Return the subarray starting at position pos, n elements long. An Exception is thrown if the subarray will not fit entirely within the array.
array = [1,2,3,4,5,6,7];
sub = subarray(array,3,2);
// sub = [4,5]