rustlr 0.3.0

LR/LALR parser generator that can automatically create abstract syntax trees
Documentation
1
2
3
4
5
6
7
8
9
# grammar to nowhere

nonterminal A
terminal a
topsym A

A --> a A

EOF