use smartstring::alias::CompactString;
use peekmore::*;
pub mod input;
pub use input::*;
pub mod tokenizer;
pub use tokenizer::*;
pub mod groupenizer;
pub use groupenizer::*;
pub mod token;
pub use token::*;
pub mod symbol;
pub use symbol::*;
pub mod literal;
pub use literal::*;
#[cfg(test)]
mod tests;