An open API service indexing awesome lists of open source software.

https://github.com/mmqnym/arithmetic-parser

A simple arithmetic parser using bison & flex
https://github.com/mmqnym/arithmetic-parser

bison-flex

Last synced: over 1 year ago
JSON representation

A simple arithmetic parser using bison & flex

Awesome Lists containing this project

README

          

# Set up

```sh
sudo apt update
sudo apt install flex
sudo apt install bison
```

If your dev environment doesn't have gcc, you will need to install it as well.

# Excute

```sh
bison -d parser.y
flex parser.l
gcc lex.yy.c parser.tab.c
./a.out
```

# LICENSE

[MIT](./LICENSE.md)