use std::fmt;
pub struct Employees(pub Vec<String>);
impl fmt::Display for Employees {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut result = String::new();
for item in self.0.iter() {
result.push_str(&item);
}
f.write_str(&result)
}
}