Mercurial > projects > ldc
annotate tests/mini/mem6.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/mem6.d@4c2689d57ba4 |
children |
rev | line source |
---|---|
lindquist@212 | 1 module tangotests.mem6; |
lindquist@212 | 2 |
lindquist@212 | 3 extern(C) int printf(char*,...); |
lindquist@212 | 4 |
lindquist@212 | 5 int main(){ |
lindquist@212 | 6 int[] index; |
lindquist@212 | 7 char[] value; |
lindquist@212 | 8 |
lindquist@212 | 9 foreach(int i, char c; "_\U00012345-"){ |
lindquist@212 | 10 printf("str[%d] = %d\n", i , cast(int)c); |
lindquist@212 | 11 index ~= i; |
lindquist@212 | 12 //value ~= c; |
lindquist@212 | 13 } |
lindquist@212 | 14 printf("done\n"); |
lindquist@212 | 15 |
lindquist@212 | 16 return 0; |
lindquist@212 | 17 } |