Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agraven/rusty-calculator
A basic equation parser written in rust
https://github.com/agraven/rusty-calculator
Last synced: 29 days ago
JSON representation
A basic equation parser written in rust
- Host: GitHub
- URL: https://github.com/agraven/rusty-calculator
- Owner: agraven
- Created: 2017-07-17T20:22:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T20:49:16.000Z (over 7 years ago)
- Last Synced: 2024-11-06T03:16:59.684Z (3 months ago)
- Language: Rust
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rusty-calculator
Rusty calculator is a simple parser of basic arithmetic matematical operations. It can currently handle:* Addition
* Subtraction
* Multiplication
* Division
* PowersPlanned features include:
* Brackets
* Roots
* Variables
* Terminal interface module
* Graphical interface module, maybe using a libui or gtk wrapper## Dependencies
Rusty calculator currently has no dependencies other than the rust standard library. Different interfaces may be added that have their own dependencies, such as gui toolkits.