rxcalc 1.0.1

An expression calculator, originally written in Scratch.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
## How To Use

Place this piece of code at the top of your file:
```rust
use rxcalc::calc;
```
Then, you can use rcalc like this:
```rust
calc("1*(1+1)"); //return 2
```
You can also use it as a separate project:
```sh
$ cargo run -- '1*(1+1)'
2
```