rustleaf 0.1.0

A simple programming language interpreter written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Lexer module - tokenization of RustLeaf source code
mod core;
mod string_interpolation;
#[cfg(test)]
mod test;
mod token;
mod token_rewrite;

// Re-export public API
pub use core::Lexer;
pub use token::{Token, TokenType};