mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
16 lines
137 B
D
16 lines
137 B
D
module classes6;
|
|
|
|
class C
|
|
{
|
|
void f()
|
|
{
|
|
printf("hello world\n");
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
scope c = new C;
|
|
c.f();
|
|
}
|