function
boot.janet on line 1819 , column 1
(interpose sep ind )
Returns a sequence of the elements of `ind` separated by `sep` .
Returns a new array.
(interpose 0 [1 ])
# -> @[1]
(interpose 0 [1 2 3 ])
# -> @[1 0 2 0 3]