mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-30 18:28:15 +08:00
6 lines
92 B
Rust
Executable File
6 lines
92 B
Rust
Executable File
use std::fs::File;
|
|
|
|
fn main() {
|
|
let greeting_file = File::open("hello.txt").unwrap();
|
|
}
|