mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-08 06:58:13 +08:00
10 lines
176 B
Rust
Executable File
10 lines
176 B
Rust
Executable File
fn main() {
|
|
// ANCHOR: here
|
|
{
|
|
let v = vec![1, 2, 3, 4];
|
|
|
|
// 处理变量 v
|
|
} // <- 这里 v 离开作用域并被丢弃
|
|
// ANCHOR_END: here
|
|
}
|