patterns/abstractfactory/freshclams.d

12 lines
217 B
D
Raw Permalink Normal View History

2022-12-05 07:38:19 +00:00
module abstractfactory.freshclams;
import abstractfactory.clams;
class FreshClams : Clams
{
override string toString() const @safe pure nothrow
{
return "Fresh Clams from Long Island Sound";
}
}