diff options
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' |