rustlr 0.2.1

LR(1)/LALR(1) parser generator for rust
Documentation
1
2
3
4
5
6
7
8
9
# grammar to nowhere

nonterminal A
terminal a
topsym A

A --> a A

EOF