Files
rust-lang-zh_CN/projects/unwrap_demo/src/main.rs
2026-03-19 13:18:55 +08:00

7 lines
137 B
Rust

use std::fs::File;
fn main() {
let greeting_file = File::open("hello.txt")
.expect("hello.txt 应包含在此项目中");
}