fn read (file_name: &str) -> &str { let mut f = File::open(file_name) .expect(&format!("file not found: {}", file_name)); let mut contents = String::new(); ...
確定! 回上一頁