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