aboutsummaryrefslogtreecommitdiff
path: root/08/main.l
blob: ad755d5e30ecafc18e8b3e2928097832c70e1e84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
%{
extern int yylval;
%}

%%
a return A;
b return B;
. return yytext[0];
\n return 0;
%%

int yywrap() {
    return 1;
}