1 2 3 4 5 6 7 8 9 10 11
use std::io; pub(crate) fn stdout_changes() { println!("Changes!") } fn user_input() -> String { let mut input = String::new(); io::stdin().read_line(&mut input).unwrap(); input }