(make-vector integer) -> vector
(make-vector integer argument) -> vector
Creates and returns a vector with a length of the given integer. If no further arguments are given, each index will contain #f. Otherwise, each index will contain the given argument.
Examples:
>>(make-vector 5) :: #( #f #f #f #f #f )
>>(make-vector 5 "Wes") :: #( "Wes" "Wes" "Wes" "Wes" "Wes" )
>>(make-vector 0) :: #( ).