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