Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
* Powers

Planned 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.