utterance 0.1.3

A parser library for creating readable, natural-language-inspired domain-specific languages.
Documentation
mod core;
mod error;
mod helpers;
mod number_kind;
mod statement;
mod statement_kind;
mod statement_match;

pub(crate) use core::Expectation;
pub(crate) use error::ExpectationError;
pub(super) use helpers::{
    expect_capitalize_word, expect_comment, expect_double_symbol, expect_exact_number,
    expect_exact_word, expect_new_line_or_end, expect_noop, expect_number, expect_one_of_words,
    expect_symbol, expect_word,
};
pub use number_kind::NumberKind;
pub use statement::Statement;
pub use statement_kind::StatementKind;
pub(super) use statement_match::Match;