peg 0.1.2

A parser generator built on the Parsing Expression Grammar (PEG) formalism.
#!/bin/bash
set -e

RUST_BACKTRACE=1 target/peg examples/tests.rustpeg > examples/test_grammar.rs
rustc --test examples/tests.rs -o tests
./tests
rm tests