eqrs 0.1.1

Zero-dependency math expression evaluator with variables
Documentation
1
2
3
4
5
6
fn main() {
    let mut expr = "".to_string();
    std::io::stdin().read_line(&mut expr).unwrap();

    println!("{}", eqrs::eval(expr.as_str(), None).unwrap());
}