module factorymethod.pizzafactorymethod.nystyleclampizza; import factorymethod.pizzafactorymethod.pizza; class NYStyleClamPizza : Pizza { this() { name = "NY Style Clam Pizza"; dough = "Thin Crust Dough"; sauce = "Marinara Sauce"; toppings ~= "Grated Reggiano Cheese"; toppings ~= "Fresh Clams from Long Island Sound"; } }