I heard somewhere that XML is a language for abstract syntax. Now here I don't understand is that how XML can be used to specify the abstract syntax or structure or systems.
Can anybody please help me with this concept.?
Thank you
I heard somewhere that XML is a language for abstract syntax. Now here I don't understand is that how XML can be used to specify the abstract syntax or structure or systems.
Can anybody please help me with this concept.?
Thank you
How about this for the abstract syntax of an arithmetic expression:
<multiply>
<number>2</number>
<add>
<number>3</number>
<number>4</number>
</add>
</multiply>
I don't know if that's what you had in mind, but if it isn't, perhaps it will help you to clarify your question.