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