{macro main()}
  <h1># ${ (true) && (true) }</h1>
  <h1># ${ (true) && (false) }</h1>
  <h1># ${ (5 + 12*12) % 100 }</h1>
  <h1># ${ (5==5) ? "a" : "b"}</h1>
  
  //template error: invalid modifier syntax
  //<h1># ${ 8 | 16 }</h1>
  //<h1># ${ (true) || (false) }</h1>
  
{/macro}