https://github.com/alt-romes/calculator-c-parser
A simple implementation of a parser and its use to calculate simple mathematical expressions
https://github.com/alt-romes/calculator-c-parser
c grammar-parser ll1-grammar parser simple
Last synced: 11 months ago
JSON representation
A simple implementation of a parser and its use to calculate simple mathematical expressions
- Host: GitHub
- URL: https://github.com/alt-romes/calculator-c-parser
- Owner: alt-romes
- Created: 2021-02-08T22:12:40.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-14T20:39:08.000Z (almost 5 years ago)
- Last Synced: 2025-03-18T16:04:53.388Z (11 months ago)
- Topics: c, grammar-parser, ll1-grammar, parser, simple
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 16
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Calculator C Parser
A simple implementation of a parser and its use to calculate simple mathematical expressions
I haven't written a detailed description here yet, but the code is fully commented to help readers understand how the parser works - and hopefully it'll inspire you to create your own after reading it
Any questions can be posed in Discussions or Issues
This was written while developing a more complete parser for [programmer-calculator](https://github.com/alt-romes/programmer-calculator)