rtools 0.1.27

Set of tools for my needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::mismatched_target_os)]

use rtools::{passed::Passed, Random};

fn main() {
    let mut pass = Passed::default();

    pass.print();
    pass.print();

    for _ in 0..100 {
        dbg!(bool::random());
    }
}