fn duplicate_first(labels: &mut Vec<String>) { let first = &labels[0]; labels.push(first.clone()); println!("original: {first}"); }