aboutsummaryrefslogtreecommitdiff
path: root/09/main.l
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-04-30 17:55:19 +0100
committerAkshay <[email protected]>2021-04-30 17:55:19 +0100
commitda1764a9f839e1d29b2bee12d35534f71f05c6ff (patch)
treed410c2191e571f9e6945ed88afd3faa1175675b3 /09/main.l
parent9ff0cec8b507d9164d8828dcb2a87012e140fdf5 (diff)
law & order
Diffstat (limited to '09/main.l')
-rw-r--r--09/main.l15
1 files changed, 15 insertions, 0 deletions
diff --git a/09/main.l b/09/main.l
new file mode 100644
index 0000000..7e888e9
--- /dev/null
+++ b/09/main.l
@@ -0,0 +1,15 @@
1%{
2extern int yylval;
3%}
4
5%%
6a return A;
7b return B;
8c return C;
9. return yytext[0];
10\n return 0;
11%%
12
13int yywrap() {
14 return 1;
15}