1
0
Fork 0
monkey-interpreter/src/main.rs

15 lines
169 B
Rust

#[macro_use]
extern crate lazy_static;
#[allow(clippy::new_ret_no_self)]
mod evaluator;
#[macro_use]
mod lexer;
mod parser;
mod repl;
fn main() {
repl::init();
}