//! # ognlib
//!
//! This is a code that I wrote to practice Rust. There is a big chance that there is some more
//! efficient code already in Crates.io. Nevertheless, with this code I can better learn Rust and
//! many of features it has.
pub mod num {
pub mod digit;
pub mod power;
pub mod radix;
}
pub mod algorithm {
pub mod extra;
pub mod prime;
pub mod sort;
}
pub mod mcko;
mod macros;