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