1pub fn sify<T>(vec: &[T]) -> String { 2 if vec.len() > 1 { 3 "s".to_string() 4 } else { 5 String::new() 6 } 7}