trpl-zh-cn/listings/ch08-common-collections/listing-08-08/src/main.rs
2023-01-16 17:34:52 +08:00

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
}