use crate::*;
impl English {
pub fn comparative(word: &str) -> String {
English::adj(word, &Degree::Comparative)
}
pub fn superlative(word: &str) -> String {
English::adj(word, &Degree::Superlative)
}
pub fn positive(word: &str) -> String {
English::adj(word, &Degree::Positive)
}
}