mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
19 lines
180 B
D
19 lines
180 B
D
struct Structure
|
|
{
|
|
static void static_method()
|
|
{
|
|
}
|
|
|
|
void method()
|
|
{
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
//Structure.static_method();
|
|
|
|
Structure s;
|
|
s.method();
|
|
}
|