trpl-zh-cn/listings/ch08-common-collections/listing-08-04/src/main.rs
2022-02-07 16:14:15 +08:00

10 lines
176 B
Rust
Executable File

fn main() {
// ANCHOR: here
{
let v = vec![1, 2, 3, 4];
// 处理变量 v
} // <- 这里 v 离开作用域并被丢弃
// ANCHOR_END: here
}