mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-01 18:58:44 +08:00
6 lines
90 B
Rust
Executable File
6 lines
90 B
Rust
Executable File
use std::fs::File;
|
|
|
|
fn main() {
|
|
let greeting_file_result = File::open("hello.txt");
|
|
}
|