mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 05:13:29 +08:00
6 lines
92 B
Rust
Executable File
6 lines
92 B
Rust
Executable File
fn main() {
|
|
// ANCHOR: here
|
|
let v: Vec<i32> = Vec::new();
|
|
// ANCHOR_END: here
|
|
}
|