mirror of
https://github.com/PDP-10/its.git
synced 2026-03-24 17:36:15 +00:00
13 lines
140 B
Plaintext
13 lines
140 B
Plaintext
%{
|
|
main() {
|
|
int res;
|
|
res = yylex();
|
|
printf("lexval=\t%d\nyylex()=\t%d\n", lexval, res);
|
|
}
|
|
%}
|
|
|
|
%%
|
|
|
|
("a" | "b")* "ab" { printf("foo");
|
|
}
|