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