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