mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-01 10:49:12 +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();
|
|
}
|