patterns/abstractfactory/mozzarellacheese.d

12 lines
216 B
D
Raw Normal View History

2022-12-05 07:38:19 +00:00
module abstractfactory.mozzarellacheese;
import abstractfactory.cheese;
class MozzarellaCheese : Cheese
{
override string toString() const @safe pure nothrow
{
return "Shredded Mozzarella";
}
}