interslavic 0.2.1

interslavic utilities in rust
Documentation
#[derive(Debug, PartialEq, Clone)]
pub struct VerbEndings {
    pub first_singular: &'static str,
    pub second_singular: &'static str,
    pub third_singular: &'static str,
    pub first_plural: &'static str,
    pub second_plural: &'static str,
    pub third_plural: &'static str,
}

pub const FIRST_CONJUGATION: VerbEndings = VerbEndings {
    first_singular: "ų",
    second_singular: "",
    third_singular: "e",
    first_plural: "emo",
    second_plural: "ete",
    third_plural: "ųt",
};

pub const SECOND_CONJUGATION: VerbEndings = VerbEndings {
    first_singular: "",
    second_singular: "",
    third_singular: "i",
    first_plural: "imo",
    second_plural: "ite",
    third_plural: "ęt",
};