Re: [xml-dev] Re: XML design of ((a and b) or c)

From
Mitch Amiano <>
To
Andrew Welch <>
Date
2006-12-13T14:03:51Z
ID
<>
Thread
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>
>
> :)