use scanln::scanln; fn main() { // Read from stdin with no prompt let some_input = scanln!(); println!("\"{}\" was entered", some_input); }