diff options
Diffstat (limited to 'grammar/simple-cross-recursive.grm')
| -rw-r--r-- | grammar/simple-cross-recursive.grm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grammar/simple-cross-recursive.grm b/grammar/simple-cross-recursive.grm index 6377886..d061cf7 100644 --- a/grammar/simple-cross-recursive.grm +++ b/grammar/simple-cross-recursive.grm @@ -1,2 +1,2 @@ -main -> other 'b' -other -> main | 'b' +main -> other 'a' +other -> main | 'a' |