trpl-zh-cn/listings/ch09-error-handling/no-listing-05-expect/src/main.rs

6 lines
106 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
use std::fs::File;
fn main() {
let f = File::open("hello.txt").expect("Failed to open hello.txt");
}