comparison tests/mini/aa1_1.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents tangotests/aa1.d@a8cd9bc1021a
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 module tangotests.aa1_1;
2
3 extern(C) int printf(char*,...);
4
5 void main()
6 {
7 int[int] map;
8 map[1] = 1;
9 map[10] = 1;
10 map[11] = 11;
11 map[14] = 41;
12 map[21] = 12;
13 map[23] = 32;
14 map[32] = 23;
15 map[201] = 102;
16 foreach(k,v; map)
17 {
18 printf("%d:%d ", k,v);
19 }
20 printf("\n");
21 }