DMD 0.167 release

Chris Nicholson-Sauls ibisbasenji at gmail.com
Mon Sep 18 14:13:23 PDT 2006


Walter Bright wrote:
> Array literals, by popular demand.
> 
> http://www.digitalmars.com/d/changelog.html

Okay, multidim new is still cool, but I've found that it only works if one uses the 
parenthetical form.  In other words, this fails to compile:
foo = new int[2][3];

But this works just fine:
foo = new int[][](2, 3);

Not really a show-stopper in my opinion, but certainly lackluster.  (The feature is still 
awesome to have, though!)

-- Chris Nicholson-Sauls



More information about the Digitalmars-d-announce mailing list