1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//! # 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;