comparison tests/mini/arrayops1.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 extern(C) int printf(char*, ...);
2
3 void main()
4 {
5 int[3] a = [1, 2, 3];
6 int[3] b = [4, 5, 6];
7 int[3] c;
8
9 c[] = a[] + b[];
10
11 printf("c.ptr = %p\n", c.ptr);
12 printf("c.length = %lu\n", c.length);
13
14 assert(c[0] == 5);
15 assert(c[1] == 7);
16 assert(c[2] == 9);
17 }