Advertisement
ingwey

BNF

May 12th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <expression> ::= <sum>
  2. <sum> ::= <product> |
  3. <product> "+" <sum> |
  4. <product> "-" <sum>
  5. <product> ::= <factor> |
  6. <factor> "*" <product> |
  7. <factor> "/" <product>
  8. <factor> ::= <number> | <symbol> |
  9. "-" <factor> | "+" <factor> |
  10. "(" <expression> ")"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement