macro_rules! pluralize {
($x:expr) => { ... };
("has", $x:expr) => { ... };
("is", $x:expr) => { ... };
("was", $x:expr) => { ... };
("this", $x:expr) => { ... };
}
Expand description
Pluralize a word based on a count.
macro_rules! pluralize {
($x:expr) => { ... };
("has", $x:expr) => { ... };
("is", $x:expr) => { ... };
("was", $x:expr) => { ... };
("this", $x:expr) => { ... };
}
Pluralize a word based on a count.