<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Or maybe using a : or something to separate rows for 2D arrays?<br>
(array 1 2 : 3 4)<br>
<br>
(array 1 0 0 0 0 0<br>
     : 0 1 0 0 0 0<br>
     : 0 0 1 0 0 0<br>
     : 0 0 0 1 0 0<br>
     : 0 0 0 0 1 0<br>
     : 0 0 0 0 0 1)<br>
<br></blockquote><div><br></div><div>What about something like:</div><div><br></div><div>    (array #:cols 6</div><div>      1 0 0 0 0 0<br>      0 1 0 0 0 0<br>      0 0 1 0 0 0<br>      0 0 0 1 0 0<br>      0 0 0 0 1 0<br>

      0 0 0 0 0 1)</div><div><br></div><div>where an extra #:cols argument lets the system know now many columns there are per row?</div></div>