【Rust】IO操作
1、控制台读取一行字符串
let mut line = String::new(); std::io::stdin() .read_line(&mut line) .expect("Failed to read line");