12 lines
216 B
D
12 lines
216 B
D
|
module abstractfactory.mozzarellacheese;
|
||
|
|
||
|
import abstractfactory.cheese;
|
||
|
|
||
|
class MozzarellaCheese : Cheese
|
||
|
{
|
||
|
override string toString() const @safe pure nothrow
|
||
|
{
|
||
|
return "Shredded Mozzarella";
|
||
|
}
|
||
|
}
|