impral 0.1.6

A command parsing and evaluation library for a LISP dialect, specialized for commandline input.
Documentation
//! Lexer that `tokenize`s a string slice into an iterator of `Token`'s.
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;