aboutsummaryrefslogtreecommitdiff
path: root/sem1/osc/mm10/opg1.l
diff options
context:
space:
mode:
Diffstat (limited to 'sem1/osc/mm10/opg1.l')
-rw-r--r--sem1/osc/mm10/opg1.l22
1 files changed, 0 insertions, 22 deletions
diff --git a/sem1/osc/mm10/opg1.l b/sem1/osc/mm10/opg1.l
deleted file mode 100644
index b5cb478..0000000
--- a/sem1/osc/mm10/opg1.l
+++ /dev/null
@@ -1,22 +0,0 @@
-%{
-
-#include <stdio.h>
-
-%}
-
-ting (a|b)abcd
-
-%%
-
-{ting} { printf("Fandt ting %s\n", yytext); return 1; }
-. { printf("Meh"); }
-
-%%
-
-int main(void) {
-
- printf("yylex: %d\n", yylex());
-
- return 0;
-
-}