Re: [xml-dev] Re: XML design of ((a and b) or c)
By the way, that's how ANT markup does it too. Andrew Welch wrote: > I wrote: >> (a and b) or c >> >> could be designed as: >> >> <or> >> <a> >> <and> >> <b/> >> <c/> >> </and> >> </or> > > ...or more correctly: > > <or> > <and> > <a/> > <b/> > </and> > <c/> > </or> > > :)