mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-26 03:49:22 +08:00
12 lines
185 B
Rust
12 lines
185 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let mut v = vec![1, 2, 3, 4, 5];
|
||
|
|
||
|
let first = &v[0];
|
||
|
|
||
|
v.push(6);
|
||
|
|
||
|
println!("The first element is: {}", first);
|
||
|
// ANCHOR_END: here
|
||
|
}
|