rustlr 0.1.0

LR(1)/LALR(1) parser generator for rust
Documentation
# LR(1) but not LALR(1) grammar from the Dragon book

absyntype i32
terminal a b c d e
nonterminal E i32
nonterminal T i32
nonterminal F i32
topsym E

E --> a T d
E --> a F e
E --> b T e
E --> b F d
T --> c
F --> c

EOF