21 lines
293 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 resolver;
pub mod interpreter;
#[cfg(test)]
mod tests;