We can read values in a vector by the index, the location each value is in the vector, starting from zero.
The nth
function gives us the value at a specific location in the vector.
(nth [5 10 15] 1)
;=> 10
count
gives us the number of items in a vector.
Create some vectors and count the values in a vector
()