trpl-zh-cn/listings/ch09-error-handling/no-listing-04-unwrap/src/main.rs

6 lines
92 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
use std::fs::File;
fn main() {
2023-01-16 17:34:52 +08:00
let greeting_file = File::open("hello.txt").unwrap();
2022-02-06 16:43:51 +08:00
}