1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! A small set of utilities for newcomers learning Rust. #![forbid(unsafe_op_in_unsafe_fn)] #![deny(missing_docs)] #![deny(missing_debug_implementations)] mod input; pub use self::input::*; mod rand; pub use self::rand::*; mod args; pub use self::args::*;