mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
18 lines
336 B
D
18 lines
336 B
D
module tangotests.mem6;
|
|
|
|
extern(C) int printf(char*,...);
|
|
|
|
int main(){
|
|
int[] index;
|
|
char[] value;
|
|
|
|
foreach(int i, char c; "_\U00012345-"){
|
|
printf("str[%d] = %d\n", i , cast(int)c);
|
|
index ~= i;
|
|
//value ~= c;
|
|
}
|
|
printf("done\n");
|
|
|
|
return 0;
|
|
}
|