Backup commit

My backspace key started ghosting. Nothing works atm.
This commit is contained in:
2024-01-27 14:50:33 +00:00
parent f77e4fd90a
commit a8887227e5
236 changed files with 10946 additions and 8977 deletions

18
src/libs/std/mod.rs Normal file
View File

@@ -0,0 +1,18 @@
//! 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;
mod protocol;
pub mod reflect;
pub mod runtime_error;
mod state;
pub mod std_system;
pub mod string;
pub mod tuple;