patterns/adapter/simpleadapter/lib/duck.d

8 lines
71 B
D

module lib.duck;
interface Duck
{
void quack();
void fly();
}