Awesome, that worked. <br>And thanks, I wasn&#39;t aware of d.learn.<br><br><br><br><div class="gmail_quote">On Sun, Aug 15, 2010 at 9:33 PM, Jonathan M Davis <span dir="ltr">&lt;<a href="mailto:jmdavisprog@gmail.com">jmdavisprog@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><div class="im">On Sunday 15 August 2010 19:20:12 Seth Hoenig wrote:<br>
</div><div><div></div><div class="h5">&gt; What I really want is something like this:<br>
&gt;<br>
&gt; auto s = args[1];<br>
&gt; auto t = args[2];<br>
&gt; auto d = new int[s.length][t.length];<br>
&gt;<br>
&gt; but the compiler complains with the error: Error: Integer constant<br>
&gt; expression expected instead of s.length<br>
&gt;<br>
&gt; So then I try to fudge it with something like:<br>
&gt;<br>
&gt; auto d = new int[][t.length];<br>
&gt; d.length = s.length;<br>
&gt;<br>
&gt; But then accessing elements of d throws an exception:<br>
&gt; core.exception.RangeError@Lev(7): Range violation<br>
&gt;<br>
&gt; Soo.. how am I supposed to make a matrix when I don&#39;t know the dimensions<br>
&gt; at compile time?<br>
<br>
</div></div>Oh, and questions like this are generally supposed to go on the D.Learn list.<br>
This list is more for discussing language features and the direction of the<br>
language rather than asking and answering questions about how to use D.<br>
<font color="#888888"><br>
- Jonathan M Davis<br>
</font></blockquote></div><br>