mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
Lots of bugfixes. Added support for special foreach on strings. Added std.array, std.utf, std.ctype and std.uni to phobos. Changed all the .c files in the gen dir to .cpp (it *is* C++ after all)
7 lines
73 B
D
7 lines
73 B
D
module arrays10;
|
|
|
|
void main()
|
|
{
|
|
int[] a = new int[10];
|
|
a[] = 3;
|
|
} |