cs-utils 0.21.1

Common utilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use cs_utils::random_str;

/// Examples for the `random_str` utility.
fn main() {
    println!("\n-- `random_str` utility example:\n");

    for i in 1..=32 {
        println!("generated \"{}\"", random_str(i));    
    }

    println!("\n");
}