rustleaf 0.1.0

A simple programming language interpreter written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
mod binary_ops;
/// Parser module - converts tokens to AST
mod core;
mod expression;
mod statement;
mod stream;
mod tracing;

// Re-export public API
pub use core::Parser;