formcalc 0.1.0

A powerful formula evaluation engine with dependency management and parallel execution
Documentation
1
2
3
4
5
6
7
8
9
pub mod ast;
pub mod evaluator;
pub mod lexer;
pub mod parser;

pub use ast::{Expr, Program, Statement};
pub use evaluator::Evaluator;
pub use lexer::Lexer;
pub use parser::Parser;