utterance 0.1.4

A parser library for creating readable, natural-language-inspired domain-specific languages.
Documentation
mod core;
mod error;
mod number;
mod punctuation;
mod special_char;
mod symbol;
mod token;
mod token_kind;
mod token_type;

pub use core::Lexer;
pub use error::LexError;
pub use number::Number;
pub use punctuation::Punctuation;
pub use special_char::SpecialChar;
pub use symbol::Symbol;
pub use token::Token;
pub use token_kind::TokenKind;
pub use token_type::TokenType;