patterns/abstractfactory/mushroom.d

12 lines
191 B
D
Raw Normal View History

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