view test/moduleinfo2.d @ 273:25fa34e899e9 trunk

[svn r294] Fixed some more of the old tests.
author lindquist
date Wed, 18 Jun 2008 23:29:14 +0200
parents d9d5d59873d8
children
line wrap: on
line source

module moduleinfo2;

extern(C) int printf(char*, ...);

void main()
{
    printf("listing modules:\n");
    foreach(m; ModuleInfo)
    {
        printf("  %.*s\n", m.name.length, m.name.ptr);
    }
}