%{ #include #include #include "parser.tab.h" %} %option noyywrap %% "+" {return PLUS;} "-" {return MINUS;} "/" {return DIVIDE;} "*" {return TIMES;} "(" {return LEFT;} ")" {return RIGHT;} [0-9]+ {return VAL;} [0-9]+"."[0-9]+ {return VAL;} [ \t]+ {} "\n" {return DONE;} . {printf("Error: invlaid lexeme '%s'.\n", yytext); return 0;} %%