Vector-Ref

(vector-ref vector integer) -> value

Given a vector and an index, returns the value found at that index.

Example:

>>(vector-ref (vector "a" "b" "c") 1)
:: "b"