view test/multiarr4.d @ 158:287540c5f05e trunk

[svn r174] added file missing from previous commit [173]
author ChristianK
date Thu, 01 May 2008 13:33:02 +0200
parents b688ad419f8c
children d9d5d59873d8
line wrap: on
line source

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);
    }
}