aboutsummaryrefslogtreecommitdiff
path: root/grammar/simple-left-recursive.grm
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-05-13 15:45:50 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2025-05-13 15:45:50 +0200
commit76f808ea98313dc847f634b2d8e31066b7a1c68d (patch)
treeceead1140f66547bb26cd3af364d37913b380398 /grammar/simple-left-recursive.grm
parenteff19cc15a9bf4df60e7f90c3a7ee525c65266c0 (diff)
make it work sometimes
Diffstat (limited to 'grammar/simple-left-recursive.grm')
-rw-r--r--grammar/simple-left-recursive.grm1
1 files changed, 1 insertions, 0 deletions
diff --git a/grammar/simple-left-recursive.grm b/grammar/simple-left-recursive.grm
new file mode 100644
index 0000000..ed3797d
--- /dev/null
+++ b/grammar/simple-left-recursive.grm
@@ -0,0 +1 @@
+main -> 'a' | main 'a'