* @throws InvalidStartRule
* @throws StateConflict
* @throws SyntaxError
*/
public static void main(String[] args) throws StateConflict, InvalidStartRule, StrandedSymbol, SyntaxError {
final IteratorTokenStream iterator = new IteratorTokenStream(new Token("id",3.0),new Token("*"),new Token("id",5.0)) ;
Parser parser = new Parser(createParseTable(),iterator) ;
Object res = parser.parse() ;
System.out.println("res="+res) ;
}