guys! I need to create some kind of metalanguage that I could embed in XML and then parse using Java. For instance:
<code>
[if value1>value2 then "Hello, Bob!" else "Hello, Jack"]
</code>
or
<code>
[if value1+2>value2 return true]
</code>
I need to implement conditional statements, arithmetic.
Any suggestions I should start looking for?
source
share