mirror of https://github.com/rm-dr/daisy
11 lines
151 B
Rust
11 lines
151 B
Rust
|
mod operator;
|
||
|
mod function;
|
||
|
mod evaluate;
|
||
|
pub use self::evaluate::evaluate;
|
||
|
|
||
|
pub enum EvalError {
|
||
|
BadMath,
|
||
|
TooBig,
|
||
|
ZeroDivision,
|
||
|
IncompatibleUnit
|
||
|
}
|