%{ #include #define YYERROR_VERBOSE void yyerror(char *); %} %verbose %token IF THEN ELSE EXPR ILLEGAL_CHAR %% statement: IF EXPR THEN statement | IF EXPR THEN statement ELSE statement | other ; other: EXPR ; %% void yyerror(char *msg) { printf("\n%s\n", msg); } int main() { return yyparse(); }