diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/mini/arrayops2.d	Mon Oct 13 23:19:32 2008 +0200
@@ -0,0 +1,10 @@
+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);
+}