use crate::*;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Adj {}
impl Adj {
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)
}
}