trpl-zh-cn/listings/ch08-common-collections/listing-08-09/src/main.rs

9 lines
139 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
let mut v = vec![100, 32, 57];
for i in &mut v {
*i += 50;
}
// ANCHOR_END: here
}