在这里分享一个我写的 Rust
例子,用到了输入输出和文件读取。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
use std::io::{self, stdin}; use std::io::prelude::*; use std::fs::File;
fn main() -> io::Result<()> { println!("请输入一些内容个 hello 变量:"); let mut hello = String::new(); stdin().read_line(&mut hello)?;
println!("variable hello>>>: {hello}");
let mut f = File::open("foo.txt")?; let mut buffer = String::new();
f.read_to_string(&mut buffer)?; println!("buffer>>> {buffer}");
Ok(()) }
|