guys! I need to create some sort of meta language which I could embed in XML and then parse with Java. For example:
<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,arithmetics.
Any suggestions where should I start looking?
 
     
     
     
     
    