trpl-zh-cn/listings/ch08-common-collections/listing-08-01/src/main.rs

6 lines
92 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
let v: Vec<i32> = Vec::new();
// ANCHOR_END: here
}