Skip to main content

random_case/
random_case.rs

1use buf_rand::BufRand;
2
3fn main() {
4    let mut rand = BufRand::new(rand::thread_rng());
5    println!("{}", rand.rand_string_case("Hello World!"));
6}