trpl-zh-cn/listings/ch09-error-handling/no-listing-05-expect/src/main.rs
2023-01-16 17:34:52 +08:00

7 lines
147 B
Rust
Executable File

use std::fs::File;
fn main() {
let greeting_file = File::open("hello.txt")
.expect("hello.txt should be included in this project");
}