fn main() { // ANCHOR: here let list_of_numbers = vec![1, 2, 3]; let list_of_strings: Vec = list_of_numbers.iter().map(ToString::to_string).collect(); // ANCHOR_END: here }