evar 0.1.1

Modern ergonomic math calculator inspired by eva
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod context;
mod errors;
mod expression;
mod function;
pub mod operators;
mod statement;
pub mod token;
mod value;
mod variable;

pub use context::Context;
pub use errors::{EvalError, SevaError};
pub use expression::Expr;
pub use function::Function;
pub use statement::Stmt;
pub use token::Token;
pub use value::Value;
pub use variable::Variable;