mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
17 lines
171 B
D
17 lines
171 B
D
extern(C) int printf(char*, ...);
|
|
|
|
static this()
|
|
{
|
|
printf("static this\n");
|
|
}
|
|
|
|
static ~this()
|
|
{
|
|
printf("static ~this\n");
|
|
}
|
|
|
|
void main()
|
|
{
|
|
printf("main\n");
|
|
}
|