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

11 lines
106 B
Rust

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