patterns/abstractfactory/eggplant.d

12 lines
191 B
D

module abstractfactory.eggplant;
import abstractfactory.veggies;
class Eggplant : Veggies
{
override string toString() const @safe pure nothrow
{
return "Eggplant";
}
}