<div dir="ltr">Hi folks, not sure if I can&#39;t read or what, I&#39;m trying to make subvectors and I&#39;m not getting at all what I&#39;m expecting from the docs. I thought from the s7 docs that subvector should return a vector given (subvector vector start end), or (subvector vector start end dimensions)<div><br></div><div>If anyone can shed some light on this, that would be lovely.</div><div>iainĀ </div><div><br><div>Here&#39;s my repl output from using the s7 repl example<div><br></div><div>&gt; (define v (vector 1 2 3 4))<br>#(1 2 3 4)<br>&gt; v<br>#(1 2 3 4)<br>&gt; (subvector v 0 2)<br>#()<br>&gt; (subvector v 0 2 1)<br><br>;subvector: too many arguments: (#(1 2 3 4) 0 2 1)<br><br>&gt; (subvector v)<br><br>;subvector: not enough arguments: (#(1 2 3 4))<br><br><br></div></div></div></div>