1//! Performs lexical analysis on string inputs 2//! 3//! The Lexer module transforms strings into tokens using Strum. 4mod error; 5mod token; 6 7mod codes; 8mod cursor; 9mod lexer; 10 11pub use error::LexerError; 12pub use lexer::Lexer; 13pub use token::*;