12 lines
224 B
D
12 lines
224 B
D
|
module abstractfactory.plumtomatosauce;
|
||
|
|
||
|
import abstractfactory.sauce;
|
||
|
|
||
|
class PlumTomatoSauce : Sauce
|
||
|
{
|
||
|
override string toString() const @safe pure nothrow
|
||
|
{
|
||
|
return "Tomato sauce with plum tomatoes";
|
||
|
}
|
||
|
}
|