patterns/abstractfactory/blackolives.d

12 lines
201 B
D
Raw Normal View History

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