mirror of
https://github.com/gnu4cn/rust-lang-zh_CN.git
synced 2026-08-19 04:33:27 +08:00
7 lines
137 B
Rust
7 lines
137 B
Rust
use std::fs::File;
|
|
|
|
fn main() {
|
|
let greeting_file = File::open("hello.txt")
|
|
.expect("hello.txt 应包含在此项目中");
|
|
}
|