mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
13 lines
200 B
D
13 lines
200 B
D
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);
|
|
}
|
|
}
|