8 lines
71 B
D
8 lines
71 B
D
|
module lib.duck;
|
||
|
|
||
|
interface Duck
|
||
|
{
|
||
|
void quack();
|
||
|
void fly();
|
||
|
}
|