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