Files
ldc/tests/mini/arrayops2.d
Tomas Lindquist Olsen 202c4f7bc2 Changed premake.lua to work with mingw.
Implemented array operations, not perfect but ok for tonight. closes #89
2008-10-13 23:19:32 +02:00

11 lines
178 B
D

void main()
{
int[4] a = [1,2,3,4];
int[4] b = [5,6,7,8];
a[] += b[];
assert(a[0] == 6);
assert(a[1] == 8);
assert(a[2] == 10);
assert(a[3] == 12);
}