aboutsummaryrefslogtreecommitdiff
path: root/sem1/osc/mm10/opg1.l
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2019-10-16 16:34:26 +0200
committerJulian T <julian@jtle.dk>2019-10-16 16:34:26 +0200
commita133079e7d76420e0e5f0f386ee714e29776a6fc (patch)
treee1b554be4abab0bd69ad1a227931416704313bd9 /sem1/osc/mm10/opg1.l
parenteb73b7edb80c59e7ca6477d933730d7553490ab6 (diff)
Some operating system work
Diffstat (limited to 'sem1/osc/mm10/opg1.l')
-rw-r--r--sem1/osc/mm10/opg1.l22
1 files changed, 22 insertions, 0 deletions
diff --git a/sem1/osc/mm10/opg1.l b/sem1/osc/mm10/opg1.l
new file mode 100644
index 0000000..b5cb478
--- /dev/null
+++ b/sem1/osc/mm10/opg1.l
@@ -0,0 +1,22 @@
+%{
+
+#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;
+
+}