talc/talc-lang/src/lib.rs
trimill b1fccce8e3
All checks were successful
docs / test (push) Successful in 10s
refactoring
2024-12-31 22:09:51 -05:00

21 lines
435 B
Rust

pub mod chunk;
pub mod compiler;
pub mod exception;
pub mod lstring;
pub mod number;
pub mod ops;
pub mod optimize;
pub mod parser;
pub mod serial;
pub mod symbol;
pub mod value;
pub mod vm;
pub mod prelude {
pub use crate::number::RatioExt;
pub use num::complex::ComplexFloat;
pub use num::integer::{Integer, Roots};
pub use num::traits::{
ConstOne, ConstZero, Euclid, FromPrimitive, Num, One, Signed, ToPrimitive, Zero,
};
}