mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
9 lines
139 B
Rust
9 lines
139 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let mut v = vec![100, 32, 57];
|
||
|
for i in &mut v {
|
||
|
*i += 50;
|
||
|
}
|
||
|
// ANCHOR_END: here
|
||
|
}
|