summaryrefslogtreecommitdiff
path: root/old/test3.ebnf
blob: d107fec8917fd913d02c1dc2631d45bdff8dc94a (plain)
1
2
3
Expression	= Term { ( "+" | "-" ) Term } .
Term		= Factor { ( "*" | "/" ) Factor } .
Factor		= Identifier | "(" Expression ")" .