A basic parser
- Create a grammar containing our regex for parsing
grammar Calc::Grammar; regex TOP { \d+ [ '+' | '-' ] \d+ }
- "TOP" indicates the top level rule for parsing
- Compile it via "make"
- Test it with "./calc --target=parse"
- View the generated source