Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pluveto/console-calc
Simple command calculator generated by flex & bison
https://github.com/pluveto/console-calc
Last synced: 4 days ago
JSON representation
Simple command calculator generated by flex & bison
- Host: GitHub
- URL: https://github.com/pluveto/console-calc
- Owner: pluveto
- Created: 2022-04-04T14:58:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-04T15:06:08.000Z (over 2 years ago)
- Last Synced: 2024-10-07T05:21:05.821Z (about 1 month ago)
- Language: Yacc
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# console-calc
## docs
How did this calculator written? [Link Here](https://www.less-bug.com/posts/flex-and-bison-of-actual-combat-a-simple-calculator/).
## usage
Build:
```shell
make calc
```Run:
```shell
./calc.out
```## feature
* `+` `-` `*` `/`
* real number (positive & negative)
* paren
* power
* abs `|expr|`