use whyme_string_randomiser::{get_random_char, get_seeded_random};
fn main() {
let inp = "hello".to_string();
println!(
"Random number with seed {} is {:?}",
inp,
get_seeded_random(&inp, 0..10, 20)
);
println!("Random character in {} is {}", inp, get_random_char(&inp));
}