Get element by index
Retrieves an element from a List, Vector, or NDArray at the specified index (0-based).
collection (List): | Vector |
NDArray The collection to access.
index (Int): The index to
retrieve.
The element at the index.
get([10, 20, 30], 1)
-- Returns = 20