trpl-zh-cn/listings/ch08-common-collections/listing-08-01/src/main.rs
2022-02-06 16:43:51 +08:00

6 lines
92 B
Rust
Executable File

fn main() {
// ANCHOR: here
let v: Vec<i32> = Vec::new();
// ANCHOR_END: here
}