You are on page 1of 1

%{ #include<stdio.h> %} %option noyywrap %% [^ \ t \ n] + { printf ("contador: %s\n",yytext); } .

{} %% int main(void) { yylex(); return 0; }

You might also like