comparison tests/mini/arrayops2.d @ 703:06576ece1a1b

Changed premake.lua to work with mingw. Implemented array operations, not perfect but ok for tonight. closes #89
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 13 Oct 2008 23:19:32 +0200
parents
children
comparison
equal deleted inserted replaced
702:353d9d184091 703:06576ece1a1b
1 void main()
2 {
3 int[4] a = [1,2,3,4];
4 int[4] b = [5,6,7,8];
5 a[] += b[];
6 assert(a[0] == 6);
7 assert(a[1] == 8);
8 assert(a[2] == 10);
9 assert(a[3] == 12);
10 }