view test/multiarr4.d @ 110:e8da7856a260 trunk

[svn r114] Implemented the ClassInfo.offTi member.
author lindquist
date Thu, 22 Nov 2007 21:01:01 +0100
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);
    }
}