This repository has been archived on 2022-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
patterns/abstractfactory/thickcrustdough.d

17 lines
342 B
D
Raw Permalink Normal View History

2022-11-13 21:45:45 +00:00
module abstractfactory.thickcrustdough;
import abstractfactory.dough;
class ThinCrustDough : Dough
{
override string toString() const @safe pure nothrow
{
return "ThickCrust style extra thick crust dough";
}
string opBinary(string op : "~")(string s)
{
return (cast(Object)this).toString() ~ s;
}
}