mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-25 05:42:18 +08:00
6 lines
80 B
Rust
6 lines
80 B
Rust
|
use std::fs::File;
|
||
|
|
||
|
fn main() {
|
||
|
let f = File::open("hello.txt").unwrap();
|
||
|
}
|