mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
17 lines
213 B
D
17 lines
213 B
D
module classes11;
|
|
extern(C) int printf(char*, ...);
|
|
|
|
void main()
|
|
{
|
|
static class C
|
|
{
|
|
void func()
|
|
{
|
|
printf("Hello world\n");
|
|
}
|
|
}
|
|
|
|
scope c = new C;
|
|
c.func();
|
|
}
|