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