packages feed

peg-matching-0.1.0.0: input/peg/expression.peg

E <- T ("+" T)*
T <- F ("*" F)* 
F <- n / "(" E ")"
^n <- [0-9]+