%option noyywrap %{ #include"massimo.tab.h" %} %% [0-9]+ { ECHO; yylval=atoi(yytext); return(NUM); } " "|\n { ECHO; } . { ECHO; return(*yytext); }