]> git.proxmox.com Git - rustc.git/blob - src/doc/book/listings/ch08-common-collections/listing-08-08/src/main.rs
New upstream version 1.63.0+dfsg1
[rustc.git] / src / doc / book / listings / ch08-common-collections / listing-08-08 / src / main.rs
1 fn main() {
2 // ANCHOR: here
3 let mut v = vec![100, 32, 57];
4 for i in &mut v {
5 *i += 50;
6 }
7 // ANCHOR_END: here
8 }