diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-05-13 15:45:50 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-05-13 15:45:50 +0200 |
| commit | 76f808ea98313dc847f634b2d8e31066b7a1c68d (patch) | |
| tree | ceead1140f66547bb26cd3af364d37913b380398 /grammar/simple-cross-recursive.grm | |
| parent | eff19cc15a9bf4df60e7f90c3a7ee525c65266c0 (diff) | |
make it work sometimes
Diffstat (limited to 'grammar/simple-cross-recursive.grm')
| -rw-r--r-- | grammar/simple-cross-recursive.grm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/grammar/simple-cross-recursive.grm b/grammar/simple-cross-recursive.grm new file mode 100644 index 0000000..6377886 --- /dev/null +++ b/grammar/simple-cross-recursive.grm @@ -0,0 +1,2 @@ +main -> other 'b' +other -> main | 'b' |