Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

LEX:

%{
#include<stdio.h>
#include"y.tab.h"
int yylval;
%}
%%
[a-zA-Z][a-zA-Z0-9]* {return ID;}
[\t]
. {return yytext[0];}
[\n] {return 0;}
[ ] {return 0;}
%%
int yywrap()
{
return 1;
}

You might also like