nameless-peg-parser 0.1.2

An implementation of PEG, still unstable
Documentation
1
2
3
4
5
6
7
8
pub const SIMPLE_LANGUAGE: (&str, &str) = (
    "Grammar",
    "Grammar <- &(A !'b') 'a'* B EOF
A <- 'a' A 'b' / ()
B <- 'b' B 'c' / ()
EOF <- !.
",
);