Files
orchid/src/libs/std/mod.rs
Lawrence Bethlenfalvy ed0d64d52e Almost Alpha
Massive improvements across the board.

One day I'll adopt incremental commits.
2024-02-24 00:31:00 +00:00

19 lines
362 B
Rust

//! Basic types and their functions, frequently used tools with no environmental
//! dependencies.
pub mod arithmetic_error;
pub mod binary;
mod bool;
mod conv;
mod cross_pipeline;
pub mod exit_status;
mod inspect;
pub mod number;
mod panic;
pub mod protocol;
pub mod reflect;
pub mod runtime_error;
mod state;
pub mod std_system;
pub mod string;
pub mod tuple;