patterns/abstractfactory/clams.d

10 lines
166 B
D

module abstractfactory.clams;
interface Clams
{
string opBinary(string op : "~")(string s) const
{
return (cast(Object)this).toString() ~ s;
}
}