aboutsummaryrefslogtreecommitdiff
path: root/parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y13
1 files changed, 13 insertions, 0 deletions
diff --git a/parser.y b/parser.y
new file mode 100644
index 0000000..4a4a5a3
--- /dev/null
+++ b/parser.y
@@ -0,0 +1,13 @@
+%{
+package main
+%}
+
+%union {
+ sval string
+}
+
+%%
+
+line:
+
+%%