# prejsx_math
A minimal math expression parser using only Rust's standard library. Supports `+`, `-`, `*`, `/`, parentheses, and negative numbers.
## Example
```rust
use prejsx_math::eval_math;
fn main() {
let result = eval_math("2 * (3 + 1)").unwrap();
println!("{}", result); // 8.0
}
```