public class FormulaParserLL3Test {
public static void main(String[] args) throws Exception {
IFormulaParser parser = new FormulaParserLL3(new StringReader(""));
ASTNode node = ASTNode.parseFormula("true || false", parser);
System.out.println(node.toFormula());