mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
7 lines
147 B
Rust
Executable File
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");
|
|
}
|