rustleaf 0.1.0

A simple programming language interpreter written in Rust
Documentation
1
2
3
4
5
6
7
8
9
mod functions;
mod math;
mod ops;
mod stdlib;

pub use functions::*;
pub use math::*;
pub use ops::*;
pub use stdlib::*;