dmd 1.063 and 2.048 release
Mafi
mafi at example.org
Thu Aug 12 02:59:47 PDT 2010
Am 12.08.2010 03:52, schrieb bearophile:
>> I have updated a bug report and I have added one new, 3813 and 4605
>
> If someone here thinks that AA printing is 'good enough', such person has to try to print a int[int[int]], like:
>
> import std.stdio;
> void main() {
> int[int[int]] aa;
> aa[[5:6, 7:8]] = 2;
> writeln(aa);
> }
>
>
> The output is:
> 5:6 7:8:2
>
> Bye,
> bearophile
Theoretically this output is perfectly fine. I just needs some brackets:
[[5:6, 7:8]:2]. I think dynamic arrays are allready printed like that.
More information about the Digitalmars-d-announce
mailing list