mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
14 lines
181 B
D
14 lines
181 B
D
module multiarr4;
|
|
|
|
void main()
|
|
{
|
|
char[][] a;
|
|
a.length = 2;
|
|
a[0] = "hello";
|
|
a[1] = "world";
|
|
foreach(v;a)
|
|
{
|
|
printf("%.*s\n", v.length, v.ptr);
|
|
}
|
|
}
|