patterns/abstractfactory/garlic.d

12 lines
185 B
D
Raw Normal View History

2022-12-05 07:38:19 +00:00
module abstractfactory.garlic;
import abstractfactory.veggies;
class Garlic : Veggies
{
override string toString() const @safe pure nothrow
{
return "Garlic";
}
}