1pub fn pluralize<T>(len: usize, singular: T, plural: T) -> T { 2 match len { 3 1 => singular, 4 _ => plural, 5 } 6}