summaryrefslogtreecommitdiffstats
path: root/tcllib/modules/pt/include/example/expr_peg_compact.inc
blob: 5c93557b77dab71b9abf5afa221ce11efd3b6811 (plain)
1
2
3
4
5
6
7
8
9
10
11
[example {
PEG calculator (Expression)
    Sign       <- [-+] 						;
    Number     <- Sign? <ddigit>+				;
    Expression <- '(' Expression ')' / (Factor (MulOp Factor)*)	;
    MulOp      <- [*/]						;
    Factor     <- Term (AddOp Term)*				;
    AddOp      <- [-+]						;
    Term       <- Number					;
END;
}]