mirror of
https://github.com/rm-dr/daisy
synced 2025-04-10 07:03:24 -07:00
14 lines
238 B
Rust
14 lines
238 B
Rust
mod function;
|
|
mod operator;
|
|
mod token;
|
|
|
|
pub use crate::tokens::token::Token;
|
|
pub use crate::tokens::function::Function;
|
|
pub use crate::tokens::operator::Operator;
|
|
|
|
pub enum EvalError {
|
|
BadMath,
|
|
TooBig,
|
|
ZeroDivision,
|
|
IncompatibleUnit
|
|
} |