John 15a3d265df interpreter: Prototype interpreter
TODO: Type-checking, floats, variables & scope
TODO Later: A bytecode interpreter
2023-10-26 14:48:44 -05:00

19 lines
274 B
Rust

//! Conlang is an expression-based programming language with similarities to Rust and Python
#![warn(clippy::all)]
#![feature(decl_macro)]
pub mod token;
pub mod ast;
pub mod lexer;
pub mod parser;
pub mod pretty_printer;
pub mod interpreter;
#[cfg(test)]
mod tests;