aboutsummaryrefslogtreecommitdiff
path: root/6/main.l
diff options
context:
space:
mode:
Diffstat (limited to '6/main.l')
-rw-r--r--6/main.l15
1 files changed, 0 insertions, 15 deletions
diff --git a/6/main.l b/6/main.l
deleted file mode 100644
index d2eded0..0000000
--- a/6/main.l
+++ /dev/null
@@ -1,15 +0,0 @@
1%{
2#include <stdlib.h>
3%}
4
5%%
6
7a return A;
8b return B;
9. return yytext[0];
10\n return 0;
11%%
12
13int yywrap() {
14 return 1;
15}