m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/19/b/grammar.l
diff options
context:
space:
mode:
Diffstat (limited to '19/b/grammar.l')
-rw-r--r--19/b/grammar.l11
1 files changed, 11 insertions, 0 deletions
diff --git a/19/b/grammar.l b/19/b/grammar.l
new file mode 100644
index 0000000..6237a66
--- /dev/null
+++ b/19/b/grammar.l
@@ -0,0 +1,11 @@
+%{
+#include "grammar.tab.h"
+%}
+
+%%
+
+a return A;
+b return B;
+\n return EOL;
+
+%%